diff options
author | Tom Gundersen <teg@jklm.no> | 2011-07-28 14:21:07 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-07-28 14:21:07 +0200 |
commit | 92ef85ff23d548f6dc9be3fb9b73a050f596941f (patch) | |
tree | 8d06b3607d1bd0442069ad659d18eea4d563b482 | |
parent | 76b5afd054d73b5c22eb7ee36e081eca40395457 (diff) |
NEED_ROOT: default to off2011.07.3
This keeps the functionality, but disables it by default.
Individual scripts/functions can turn it on if they want.
Signed-off-by: Tom Gundersen <teg@jklm.no>
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -531,7 +531,7 @@ need_root() { # Quit script if it's not running by root # This can be disabled in scripts sourcing functions by setting NEED_ROOT=0 # A local call to need_root can be done to ensure part of script need root privilege -(( ${NEED_ROOT:-1} == 1 )) && need_root +(( ${NEED_ROOT:-0} == 1 )) && need_root # End of file # vim: set ts=2 sw=2 noet: |