summaryrefslogtreecommitdiffstats
path: root/plugins/sudoers/regress/testsudoers/test13.sh
blob: e33cbb1c2ecaddb849be1c31dfde9c74b5b12d53 (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 sudoers file with reserved words as alias names.
# The standard error output is dup'd to the standard output.
#

: ${TESTSUDOERS=testsudoers}

# Avoid warnings about memory leaks when there is a syntax error
ASAN_OPTIONS=detect_leaks=0; export ASAN_OPTIONS

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