Leopold Schabel | 383d4bb | 2019-11-14 22:53:58 +0100 | [diff] [blame] | 1 | #!/usr/bin/expect -f |
2 | |||||
3 | set timeout 30 | ||||
4 | |||||
5 | spawn core/scripts/launch.sh | ||||
6 | |||||
7 | expect "Network service got IP" {} default { | ||||
8 | send_error "Failed while waiting for IP address" | ||||
9 | exit 1 | ||||
10 | } | ||||
11 | |||||
12 | expect "Initialized encrypted storage" { | ||||
13 | exit 0 | ||||
14 | } default { | ||||
15 | send_error "Failed while waiting for encrypted storage" | ||||
16 | exit 1 | ||||
17 | } |