kiss: Run env additionally as root

This commit is contained in:
Dylan Araps 2020-02-19 20:28:31 +02:00
parent 040145e118
commit 69b471fe1f
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 10 additions and 1 deletions

11
kiss
View File

@ -1345,6 +1345,16 @@ args() {
done
;;
e|env)
# Display all KISS related environment variables as
# seen by the package manager.
env | grep -F KISS_
# Run the above as root as a means of debugging
# the environment. We'll see how handy it is over time.
[ "$uid" = 0 ] || as_root kiss env
;;
i|install)
pkg_order "$@"
@ -1359,7 +1369,6 @@ args() {
done
;;
e|env) env | grep -F KISS_ ;;
l|list) pkg_list "$@" ;;
u|update) pkg_updates ;;
s|search) for pkg; do pkg_find "$pkg" all; done ;;