kiss: cleaneer as_root

This commit is contained in:
Dylan Araps 2020-01-30 10:47:11 +02:00
parent 546110a1c0
commit fa1538fb13
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 4 additions and 4 deletions

8
kiss
View File

@ -53,9 +53,9 @@ as_root() {
log "Using '${su:-su}'"
case $su in
*sudo) sudo -E KISS_FORCE="$KISS_FORCE" "$@" ;;
*doas) KISS_FORCE="$KISS_FORCE" doas "$@" ;;
*) su -pc "KISS_FORCE=$KISS_FORCE $* <&3" 3<&0 </dev/tty ;;
*sudo) sudo -u "${user:-root}" -E "$@" ;;
*doas) doas -u "${user:-root}" "$@" ;;
*) su -pc "$* <&3" "${user:-root}" 3<&0 </dev/tty ;;
esac
exit
@ -1165,7 +1165,7 @@ args() {
# Rerun the script with 'su' if the user isn't root.
# Cheeky but 'su' can't be used on shell functions themselves.
as_root kiss "$action" "$@"
KISS_FORCE="$KISS_FORCE" as_root kiss "$action" "$@"
;;
esac