blob: d52754d103d7764477ab9b74b2d3c3d766f2b618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
#
# Test @include with garbage after the path name
# The standard error output is dup'd to the standard output.
#
: ${TESTSUDOERS=testsudoers}
MYUID=`\ls -ln $TESTDIR/test2.inc | awk '{print $3}'`
MYGID=`\ls -ln $TESTDIR/test2.inc | awk '{print $4}'`
echo "Testing @include with garbage after the path name"
echo ""
$TESTSUDOERS -U $MYUID -G $MYGID root id <<EOF 2>&1 | sed 's/\(syntax error\), .*/\1/'
@include sudoers.local womp womp
EOF
echo ""
echo "Testing #include with garbage after the path name"
echo ""
$TESTSUDOERS -U $MYUID -G $MYGID root id <<EOF 2>&1 | sed 's/\(syntax error\), .*/\1/'
#include sudoers.local womp womp
EOF
exit 0
|