Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/lib/archroot.sh
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-16 15:52:04 +0200
committerErich Eckner <git@eckner.net>2018-05-29 09:02:49 +0200
commit472b0e98a87c9fc942db930a4d5c3f34a88d2169 (patch)
treec0902d5d62f55370ca973d4138829b267a393e4a /lib/archroot.sh
parent75cd26b393b4dc5903a3894c34ac2287b6ae4d5b (diff)
revert eab5aba9b027a7689acaf2382a04ff69b5b8771e - it does not work with sudo-1.8.23-1v20180528archlinux32/v20180528
Diffstat (limited to 'lib/archroot.sh')
-rw-r--r--lib/archroot.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/archroot.sh b/lib/archroot.sh
index f279603..98fd2cf 100644
--- a/lib/archroot.sh
+++ b/lib/archroot.sh
@@ -6,15 +6,13 @@
CHROOT_VERSION='v4'
##
-# usage : check_root $keepenv
+# usage : check_root
##
orig_argv=("$0" "$@")
check_root() {
- local keepenv=$1
-
(( EUID == 0 )) && return
if type -P sudo >/dev/null; then
- exec sudo --preserve-env=$keepenv -- "${orig_argv[@]}"
+ exec sudo -- "${orig_argv[@]}"
else
exec su root -c "$(printf ' %q' "${orig_argv[@]}")"
fi