Allow config command without root privileges.
This commit is contained in:
parent
c9a09a282c
commit
c8daf8fcfd
|
@ -18,13 +18,6 @@ DESCRIPTION="$(Echo 'utility to build live systems')"
|
|||
HELP="FIXME"
|
||||
USAGE="FIXME"
|
||||
|
||||
# Checking user account
|
||||
if [ "$(id -u)" -ne "0" ]
|
||||
then
|
||||
Echo_error "need root privileges"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case "${1}" in
|
||||
-h|--help)
|
||||
if [ -x "$(which man 2>/dev/null)" ]
|
||||
|
@ -52,6 +45,16 @@ case "${1}" in
|
|||
|
||||
ENV=""
|
||||
|
||||
if [ "${COMMAND}" != "config" ]
|
||||
then
|
||||
# Checking user account
|
||||
if [ "$(id -u)" -ne "0" ]
|
||||
then
|
||||
Echo_error "need root privileges"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
for _FILE in config/environment config/environment.binary
|
||||
do
|
||||
if [ -e "${_FILE}" ]
|
||||
|
|
Loading…
Reference in New Issue