From f845a0e385a8e65357a5243406d83341a0e4f248 Mon Sep 17 00:00:00 2001
From: Daniel Kessler <dkess@dkess.me>
Date: Sun, 4 Aug 2024 17:36:10 -0700
Subject: [PATCH] add run0 support as sudo replacement

---
 doc/tomb.1 | 2 +-
 tomb       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/tomb.1 b/doc/tomb.1
index 767688cd..6c9d912f 100644
--- a/doc/tomb.1
+++ b/doc/tomb.1
@@ -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
diff --git a/tomb b/tomb
index 34b41020..bb652149 100755
--- a/tomb
+++ b/tomb
@@ -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} ${@}