mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
14 lines
249 B
Bash
Executable File
14 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test cvtsudoers.conf
|
|
#
|
|
|
|
exec 2>&1
|
|
./cvtsudoers -c $TESTDIR/test21.conf <<EOF
|
|
Defaults authenticate, timestamp_timeout=0
|
|
User_Alias FULLTIMERS = user1, user2, user3
|
|
|
|
ALL ALL = (:) NOPASSWD:/usr/bin/id
|
|
FULLTIMERS ALL = (ALL:ALL) ALL
|
|
EOF
|