40 lines
875 B
Bash
Executable File
40 lines
875 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname $0)"
|
|
|
|
. ../../../common/config.sh
|
|
. ../../../common/log.sh
|
|
|
|
log_start "$0" "useradd adds supplementary groups based on the GROUPS field in /etc/default/useradd"
|
|
|
|
save_config
|
|
|
|
# restore the files on exit
|
|
trap 'log_status "$0" "FAILURE"; restore_config' 0
|
|
|
|
change_config
|
|
|
|
printf "Create user foo, with group associations with bin,adm,man,cdrom..."
|
|
useradd foo
|
|
printf "OK\n"
|
|
|
|
printf "Check the passwd file..."
|
|
../../../common/compare_file.pl data/passwd /etc/passwd
|
|
printf "OK\n"
|
|
printf "Check the group file..."
|
|
../../../common/compare_file.pl data/group /etc/group
|
|
printf "OK\n"
|
|
printf "Check the shadow file..."
|
|
../../../common/compare_file.pl data/shadow /etc/shadow
|
|
printf "OK\n"
|
|
printf "Check the gshadow file..."
|
|
../../../common/compare_file.pl data/gshadow /etc/gshadow
|
|
printf "OK\n"
|
|
|
|
log_status "$0" "SUCCESS"
|
|
restore_config
|
|
trap '' 0
|
|
|