24 lines
580 B
Bash
24 lines
580 B
Bash
|
#!/bin/bash
|
||
|
# Note: execute this file from the project root directory
|
||
|
|
||
|
#####
|
||
|
#
|
||
|
# Test the live-iso image
|
||
|
#
|
||
|
#####
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. /usr/share/beakerlib/beakerlib.sh
|
||
|
. $(dirname $0)/lib/lib.sh
|
||
|
|
||
|
rlJournalStart
|
||
|
rlPhaseStartTest "Verify live iso"
|
||
|
# Just the fact that this is running means the image can boot and ssh is working
|
||
|
rlRun -t -c "passwd --status root | grep -E '^root\s+NP?'" 0 "root account has no password set"
|
||
|
rlAssertGrep "liveuser" /etc/passwd
|
||
|
rlAssertGrep "custom_cmdline_arg" /proc/cmdline
|
||
|
rlPhaseEnd
|
||
|
rlJournalEnd
|
||
|
rlJournalPrintText
|