mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Added a missing space
This commit is contained in:
parent
004ba28378
commit
207422f83a
1 changed files with 2 additions and 2 deletions
|
@ -41,13 +41,13 @@ SetTemperatureUnit(){
|
|||
|
||||
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 "Exiting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if[ "$SUDO_USER" == "lighttpd" ]; then
|
||||
if [ "${SUDO_USER}" == "lighttpd" ]; then
|
||||
echo "Security measure: user lighttpd is not allowed to change webUI password!"
|
||||
echo "Exiting"
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue