index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz@archlinux.org> | 2017-10-30 11:17:56 -0400 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2017-11-22 16:35:25 +0100 |
commit | eab5aba9b027a7689acaf2382a04ff69b5b8771e (patch) | |
tree | c007465661502736d8c90b3b9c2990cf6447c4ec /lib/archroot.sh | |
parent | 2a308821b3de179ca1946051d7733362ed45ed04 (diff) |
-rw-r--r-- | lib/archroot.sh | 6 |
diff --git a/lib/archroot.sh b/lib/archroot.sh index 98fd2cf..f279603 100644 --- a/lib/archroot.sh +++ b/lib/archroot.sh @@ -6,13 +6,15 @@ CHROOT_VERSION='v4' ## -# usage : check_root +# usage : check_root $keepenv ## orig_argv=("$0" "$@") check_root() { + local keepenv=$1 + (( EUID == 0 )) && return if type -P sudo >/dev/null; then - exec sudo -- "${orig_argv[@]}" + exec sudo --preserve-env=$keepenv -- "${orig_argv[@]}" else exec su root -c "$(printf ' %q' "${orig_argv[@]}")" fi |