b60126775a
* make it executable * improve robustness * do't hardcode services.default (why did it do this?)
13 lines
No EOL
182 B
Text
13 lines
No EOL
182 B
Text
set timeout 60
|
|
|
|
spawn socat unix-connect:vm/console -
|
|
send "\r\n"
|
|
expect {
|
|
"# " { send "hostname\r\n" };
|
|
}
|
|
|
|
expect {
|
|
"(none)" {}
|
|
"liminix" {}
|
|
timeout { exit(1) }
|
|
} |