test.sh revision 1a6dc6534e329f21aa2dcde5b8af4138bb4c11f1
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
TEST_DESCRIPTION="cryptsetup systemd setup"
. $TEST_BASE_DIR/test-functions
# Uncomment this to debug failures
#DEBUGFAIL="systemd.unit=multi-user.target"
ret=1
return $ret
}
if check_qemu ; then
check_result_qemu || return 1
else
dwarn "can't run qemu-kvm, skipping"
fi
return 0
}
# Create what will eventually be our root filesystem onto an overlay
(
# setup the testsuite service
[Unit]
Description=Testsuite service
After=multi-user.target
[Service]
ExecStart=/bin/bash -c 'set -x; ( systemctl --failed --no-legend --no-pager; systemctl status --failed ) > /failed ; echo OK > /testok; while : ;do systemd-cat echo "testsuite service waiting for /var/log/journal" ; echo "testsuite service waiting for journal to move to /var/log/journal" > /dev/console ; for i in /var/log/journal/*;do [ -d "\$i" ] && echo "\$i" && break 2; done; sleep 1; done; sleep 1; exit 0;'
Type=oneshot
EOF
$DM_NAME UUID=$ID_FS_UUID /etc/varkey
EOF
/dev/mapper/varcrypt /var ext3 defaults 0 1
EOF
)
}
return 0
}
do_test "$@"