Allow config command without root privileges.

This commit is contained in:
Kiel Christofferson 2013-11-15 16:13:32 -05:00 committed by Daniel Baumann
parent c9a09a282c
commit c8daf8fcfd
1 changed files with 10 additions and 7 deletions

View File

@ -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}" ]