Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/tomb.1
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Default is 18 which is 250 MiB (2^18 = 262,144 kilobytes).
.B
.IP "--sudo \fI<executable>\fR"
Select a different tool than sudo for privilege escalation.
Alternatives supported so far are: pkexec, doas, sup, sud. For any
Alternatives supported so far are: pkexec, doas, sup, sud, run0. For any
alternative to work the executable must be included in the current
PATH.
.B
Expand Down
2 changes: 1 addition & 1 deletion tomb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ _sudo() {
if option_is_set --sudo; then
pescmd=`option_value --sudo`
case `basename $pescmd` in
"doas"|"sup"|"sud"|"pkexec")
"doas"|"sup"|"sud"|"pkexec"|"run0")
command -v $pescmd > /dev/null || _failure "$pescmd executable not found"
_verbose "Super user execution using $pescmd"
${pescmd} ${@}
Expand Down