mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 01:49:11 +00:00
12 lines
112 B
Bash
Executable File
12 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Verify sudoers matching by uid.
|
|
#
|
|
|
|
exec 2>&1
|
|
./testsudoers root id <<EOF
|
|
#0 ALL = ALL
|
|
EOF
|
|
|
|
exit 0
|