shadow/tests/usertools/useradd/69_useradd_default_GROUPS_name/useradd.test
Andy Zaugg e8d2bc8d8b Allow supplementary groups to be added via config file
Allow supplementary groups to be set via the /etc/default/useradd config
file. Allowing an administrator to set additonal groups via the GROUPS
configurable and control the default behaviour of useradd.
2022-11-18 15:10:56 -06:00

32 lines
560 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/deault/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 group file..."
../../../common/compare_file.pl data/group /etc/group
printf "OK\n"
log_status "$0" "SUCCESS"
restore_config
trap '' 0