Added a missing space

This commit is contained in:
DL6ER 2016-12-13 15:54:41 +01:00
parent 004ba28378
commit 207422f83a

View file

@ -41,13 +41,13 @@ SetTemperatureUnit(){
SetWebPassword(){ SetWebPassword(){
if[ "$SUDO_USER" == "www-data" ]; then if [ "${SUDO_USER}" == "www-data" ]; then
echo "Security measure: user www-data is not allowed to change webUI password!" echo "Security measure: user www-data is not allowed to change webUI password!"
echo "Exiting" echo "Exiting"
exit 1 exit 1
fi fi
if[ "$SUDO_USER" == "lighttpd" ]; then if [ "${SUDO_USER}" == "lighttpd" ]; then
echo "Security measure: user lighttpd is not allowed to change webUI password!" echo "Security measure: user lighttpd is not allowed to change webUI password!"
echo "Exiting" echo "Exiting"
exit 1 exit 1