Files
shadow/tests/su/11_su_sulog_failure/su.test
T
nekral-guest 80d3925cc1 * Updated for dash
* There is no need to send a wrong password. The expect script is already changing the password to a wrong one
 * Updated ignore property
2010-08-26 21:11:33 +00:00

41 lines
756 B
Bash
Executable File

#!/bin/sh
set -e
cd $(dirname $0)
. ../../common/config.sh
. ../../common/log.sh
log_start "$0" "su can be used to switch to a non-root user"
# no testsuite password
# root password: rootF00barbaz
# myuser password: myuserF00barbaz
save_config
# restore the files on exit
trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
./run_su.exp myuser myuserF00barbaz '$ '
echo -n "Check /var/log/sulog..."
wc -l /var/log/sulog > tmp/sulog
d=$(date +"SU %m/%d %H:%M")
cat /var/log/sulog | \
egrep -v "$d \+ /dev/pts/[0-9]* root-testsuite" | \
egrep -v "$d - /dev/pts/[0-9]* testsuite-myuser" \
>> tmp/sulog || true
diff -au tmp/sulog data/sulog
echo "OK"
rm -f tmp/sulog
log_status "$0" "SUCCESS"
restore_config
trap '' 0