blob: d380ad829d423ae9f2b634b8c49c837d4da9d0a1 [file] [log] [blame]
Leopold Schabel383d4bb2019-11-14 22:53:58 +01001#!/usr/bin/expect -f
2
Leopold Schabelf79bfac2019-11-18 11:16:39 +01003set timeout 60
Leopold Schabel383d4bb2019-11-14 22:53:58 +01004
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}