pre-req: seafile user account
This commit is contained in:
parent
1330cc8e70
commit
1bd6ff7856
16
backup.sh
16
backup.sh
@ -409,17 +409,17 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Check Seafile webuser account
|
## Check Seafile user account
|
||||||
# Ensure Seafile webuser account is provided
|
# Ensure Seafile user account is provided
|
||||||
if [ -z "$webUser" ]; then
|
if [ -z "$seafUser" ]; then
|
||||||
echo -e "\n${err}The webuser account running Seafile must be provided" \
|
echo -e "\n${err}The user account running Seafile must be provided" \
|
||||||
"(-u parameter)${normal}\n"
|
"(-u parameter)${normal}\n"
|
||||||
exit 1
|
exit 1
|
||||||
# Check if supplied webUser account exists
|
# Check if supplied seafUser account exists
|
||||||
elif [ -n "$webUser" ]; then
|
else
|
||||||
user_exists=$(id -u "$webUser" > /dev/null 2>&1; echo $?)
|
user_exists=$(id -u "$seafUser" > /dev/null 2>&1; echo $?)
|
||||||
if [ "$user_exists" -ne 0 ]; then
|
if [ "$user_exists" -ne 0 ]; then
|
||||||
echo -e "\n${err}The supplied webuser account (-u parameter) does not" \
|
echo -e "\n${err}The supplied user account (-u parameter) does not" \
|
||||||
"exist.${normal}\n"
|
"exist.${normal}\n"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user