mirror of https://github.com/sudo-project/sudo.git
16 lines
277 B
Bash
Executable File
16 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test for NULL dereference with "sudo -g group" when the sudoers rule
|
|
# has no runas user or group listed.
|
|
# This is RedHat bug Bug 667103.
|
|
#
|
|
|
|
: ${TESTSUDOERS=testsudoers}
|
|
|
|
exec 2>&1
|
|
$TESTSUDOERS -g bin -P ${TESTDIR}/group root id <<EOF
|
|
root ALL = ALL
|
|
EOF
|
|
|
|
exit 0
|