You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo-rs has a clever mechanism which doesn't unfold the aliases in-memory, but sudo --list is unaware of this:
Suppose we have Cmnd_Alias FOO=/bin/fsck and Cmnd_Alias BAR=FOO, and ALL ALL = BAR in /etc/sudoers, then:
$ sudo-rs --list
User marc may run the following commands on xyzzy:
(root) FOO
$ ogsudo --list
...
User marc may run the following commands on xyzzy:
(root) /sbin/fsck
The text was updated successfully, but these errors were encountered:
sudo-rs has a clever mechanism which doesn't unfold the aliases in-memory, but
sudo --list
is unaware of this:Suppose we have
Cmnd_Alias FOO=/bin/fsck
andCmnd_Alias BAR=FOO
, andALL ALL = BAR
in/etc/sudoers
, then:The text was updated successfully, but these errors were encountered: