Files
sudo/plugins/sudoers/regress/testsudoers/test3.sh
Todd C. Miller 46db7a20e4 Pass in expected gid to testsudoers in addition to the uid that
matches the test sudoers files.
2013-04-02 09:25:51 -04:00

14 lines
245 B
Bash
Executable File

#!/bin/sh
#
# Test #include facility
#
MYUID=`\ls -lnd $TESTDIR/test3.d | awk '{print $3}'`
MYGID=`\ls -lnd $TESTDIR/test3.d | awk '{print $4}'`
exec 2>&1
./testsudoers -U $MYUID -G $MYGID root id <<EOF
#includedir $TESTDIR/test3.d
EOF
exit 0