Update linuxkit.packages.getty-containerd for ctr changes

`ctr pull` → `ctr images pull`

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell 2017-11-09 13:50:51 +00:00
parent a5f4da2ebb
commit eb491824ba

View File

@ -40,22 +40,22 @@ expect {
expect {
timeout {
puts "FAILED ctr pull"
puts "FAILED ctr images pull"
exec kill -9 $pid
exit 1
}
$prompt {
send "ctr pull $image\n"
send "ctr images pull $image\n"
}
}
expect {
timeout {
puts "FAILED ctr pull"
puts "FAILED ctr images pull"
exec kill -9 $pid
exit 1
}
$prompt {
puts "SUCCESS ctr pull"
puts "SUCCESS ctr images pull"
send "ctr run -t $image test\n"
}
}