shadow/tests/usertools/useradd/41_useradd_default_default_SKEL/useradd.test
2017-10-22 18:34:35 +00:00

49 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
set -e
cd $(dirname $0)
. ../../../common/config.sh
. ../../../common/log.sh
log_start "$0" "useradd uses the default SKEL value is SKEL is set to empty"
save_config
# restore the files on exit
trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
echo -n "Get default value (useradd -D)..."
useradd -D >tmp/defaults
echo "OK"
echo "useradd reported:"
echo "======================================================================="
cat tmp/defaults
echo "======================================================================="
echo -n "Check the usage message..."
diff -au data/defaults tmp/defaults
echo "usage message OK."
rm -f tmp/defaults
echo -n "Check the passwd file..."
../../../common/compare_file.pl config/etc/passwd /etc/passwd
echo "OK"
echo -n "Check the group file..."
../../../common/compare_file.pl config/etc/group /etc/group
echo "OK"
echo -n "Check the shadow file..."
../../../common/compare_file.pl config/etc/shadow /etc/shadow
echo "OK"
echo -n "Check the gshadow file..."
../../../common/compare_file.pl config/etc/gshadow /etc/gshadow
echo "OK"
log_status "$0" "SUCCESS"
restore_config
trap '' 0