Files
sudo/plugins/sudoers/regress/testsudoers/test2.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
246 B
Bash
Executable File

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