forked from DGNum/liminix
7 lines
127 B
Text
7 lines
127 B
Text
set timeout 60
|
|
|
|
spawn socat unix-connect:vm/console -
|
|
expect {
|
|
"root@liminix blah blah > " { exit 0 }
|
|
timeout { exit 1 }
|
|
}
|