summaryrefslogtreecommitdiff
path: root/tests/create-and-run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/create-and-run.sh')
-rwxr-xr-xtests/create-and-run.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/create-and-run.sh b/tests/create-and-run.sh
index dfd4022..4b5d986 100755
--- a/tests/create-and-run.sh
+++ b/tests/create-and-run.sh
@@ -5,15 +5,15 @@
set -ex
cleanup() {
- rm -f ssh_id ssh_id.pub test.ext2
+ rm -f ssh_id ssh_id.pub test.ext4
}
trap cleanup EXIT INT TERM QUIT
ssh-keygen -f ssh_id -N ''
-debvm-create -k ssh_id.pub -o test.ext2 "$@"
+debvm-create -k ssh_id.pub -o test.ext4 "$@"
-timeout 240s debvm-run -s 2222 -i test.ext2 &
+timeout 240s debvm-run -s 2222 -i test.ext4 &
timeout=5
sshopt="-o StrictHostKeyChecking=no $(if test "$2" = jessie; then echo -o PubkeyAcceptedKeyTypes=+ssh-rsa; fi)"
ts=$(sleepenh 0 || [ $? -eq 1 ])