-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix formatting, cat config in sanity check, fix test configs
- Loading branch information
1 parent
52265c6
commit dffd615
Showing
4 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/bash | ||
# ascent config file | ||
# https://github.com/boddenberg-it/ascent | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
This is an invalid config file | ||
4df1d42174585f61=001=s3 | ||
|
||
# device 0 | ||
serial_0=foo | ||
name_0=bar | ||
|
||
# device 1 | ||
name_1=s3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
#!/bin/bash | ||
# ascent config file | ||
# | ||
# device_0=<android_serial>=<msisdn>=<name> | ||
# device_1=<android_serial>=<msisdn>=<name> | ||
# | ||
# https://github.com/boddenberg-it/ascent | ||
|
||
device_0=05cd99e0f0dd9bc8=000=nexus5 | ||
device_1=4df1d42174595f61=001=s3 | ||
# device 0 | ||
serial_0=05cd99e0f0dd9bc8 | ||
msisdn_0=000 | ||
name_0=nexus5 | ||
|
||
# device 1 | ||
serial_1=4df1d42174595f61 | ||
msisdn_1=001 | ||
name_1=s3 |