mirror of https://github.com/sudo-project/sudo.git
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test #include facility
|
|
#
|
|
|
|
: ${TESTSUDOERS=testsudoers}
|
|
|
|
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
|