We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6748b1c + df877ef commit 9098406Copy full SHA for 9098406
1 file changed
README.md
@@ -70,6 +70,11 @@ Some other notable restrictions to be aware of:
70
the sudoers file.
71
* sudo-rs will not include the sendmail support of original sudo.
72
* The sudoers file must be valid UTF-8.
73
+* To prevent a common configuration mistake in the sudoers file, wildcards
74
+ are not supported in *argument positions* for a command.
75
+ E.g., `%sudoers ALL = /sbin/fsck*` will allow `sudo fsck` and `sudo fsck_exfat` as expected,
76
+ but `%sudoers ALL = /bin/rm *.txt` will not allow an operator to run `sudo rm README.txt`,
77
+ nor `sudo rm -rf /home .txt`, as with original sudo.
78
79
If you find a common use case for original sudo missing, please create a feature
80
request for it in our issue tracker.
0 commit comments