kiss: revert sudo change

This commit is contained in:
Dylan Araps 2020-01-29 14:53:36 +02:00
parent e8d4e8900a
commit 7d2dd76495
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 4 additions and 10 deletions

14
kiss
View File

@ -106,16 +106,10 @@ dosu() {
# below. Great naming of functions all around.
#
# Run a command as root using the cached password. The 'su'
# and 'sudo' commands allow you to input a password via stdin.
# To hide the prompt, the command's output is sent to '/dev/tty'
# and the output of 'su'/'sudo' is sent to '/dev/null'.
dosudo() {
if command -v sudo >/dev/null 2>&1; then
sudo -SEk -- su "${drop_to:-root}" -c "$* >/dev/tty" 2>/dev/null
else
su "${drop_to:-root}" -c "$* >/dev/tty" >/dev/null
fi
}
# command allows you to input a password via stdin. To hide
# the prompt, the command's output is sent to '/dev/tty'
# and the output of 'su' is sent to '/dev/null'.
dosudo() { su "${drop_to:-root}" -c "$* >/dev/tty" >/dev/null; }
# The code below uses the most secure method of sending
# data over stdin based on what is available in the system.