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