diff options
author | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2017-03-07 19:27:36 +0100 |
---|---|---|
committer | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2017-03-07 19:35:09 +0100 |
commit | 45f87aa9d5b44e4ff2f73be6597d4024bcded8e3 (patch) | |
tree | 70e691b68c47d7f794a096311ea7b102aa30228d /lib/common.sh | |
parent | 66553e7e07af9261e55c7c287615b61dc080593d (diff) | |
download | devtools32-45f87aa9d5b44e4ff2f73be6597d4024bcded8e3.tar.xz |
lib/archroot.sh: Simplify check_root
Move the function and save the orig_argv right along it.
Diffstat (limited to 'lib/common.sh')
-rw-r--r-- | lib/common.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/common.sh b/lib/common.sh index 387fb8c..599be54 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -227,15 +227,3 @@ find_cached_package() { return 1 esac } - -## -# usage : check_root ("$0" "$@") -## -check_root() { - (( EUID == 0 )) && return - if type -P sudo >/dev/null; then - exec sudo -- "$@" - else - exec su root -c "$(printf ' %q' "$@")" - fi -} |