summaryrefslogtreecommitdiffstats
path: root/plugins/sudoers/regress/testsudoers/test18.sh
blob: 645b9a5cdd76415daf0017c91127322bca7a3a0f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
#
# Test regular expressions
#

: ${TESTSUDOERS=testsudoers}

exec 2>&1

# Command and args: regex
$TESTSUDOERS root /bin/ls -l <<'EOF'
root ALL = ^/bin/ls$ ^-[lAt]$
EOF

# Command: regex, args: wildcard
$TESTSUDOERS root /bin/cat /var/log/syslog <<'EOF'
root ALL = ^/bin/cat$ /var/log/*
EOF

# Command: path, args: regex
$TESTSUDOERS root /bin/cat /var/log/authlog <<'EOF'
root ALL = /bin/cat ^/var/log/[^/]+$
EOF

# Command: wildcard, args: regex
$TESTSUDOERS root /bin/cat /var/log/mail <<'EOF'
root ALL = /bin/*at ^/var/log/[^/]+$
EOF

# Command: path, args: args start with escaped ^
$TESTSUDOERS root /usr/bin/grep '^foo$' <<'EOF'
root ALL = /usr/bin/grep \^foo$
EOF

# Command: sudoedit, args: regex
$TESTSUDOERS root sudoedit /etc/motd <<'EOF'
root ALL = sudoedit ^/etc/(motd|issue|hosts)$
EOF

exit 0