summaryrefslogtreecommitdiffstats
path: root/plugins/sudoers/regress/testsudoers/test13.sh
blob: d9c3d0c42002e3d39aef72e97711f7bc57c6198d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# Test sudoers file with reserved words as alias names.
# The standard error output is dup'd to the standard output.
#

: ${TESTSUDOERS=testsudoers}

echo "Testing alias definitions using reserved words"
echo ""
$TESTSUDOERS -d <<EOF 2>&1
Cmnd_Alias ALL=ALL
Cmnd_Alias CHROOT=foo
User_Alias TIMEOUT=foo
Runas_Alias CWD=bar
Host_Alias NOTBEFORE=baz
Host_Alias NOTAFTER=biff

root ALL = ALL
EOF

exit 0