]> git.ozlabs.org Git - petitboot/blobdiff - utils/pb-exec
utils: Optionally run utilities as root
[petitboot] / utils / pb-exec
index bfe13f6b871dbbdab3e7aedbb96f82bfcc25e729..d672ec11683779f7dd37d6246ebbff80db7f0ada 100755 (executable)
@@ -1,7 +1,18 @@
 #!/bin/sh
 
+PREFIX=""
+
+# Check if root required
+if [[ "$(id -u)" != "0" ]]; then
+       read -n 1 -r -p "Running as user $(id -un), run as root? (y/N)" key
+       if [ "$key" == "y" ]; then
+               PREFIX="sudo"
+       fi
+       printf "\n"
+fi
+
 # Run a program specified by Petitboot.
-$@
+$PREFIX $@
 echo "$0 ran '$@'"
 
 # Wait for the user to exit back to Petitboot.