mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-22 14:13:42 +00:00
Set permission after we know the user wants to install the web server
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
c59e11a332
commit
b9ebb05246
1 changed files with 1 additions and 1 deletions
|
@ -1399,10 +1399,10 @@ installConfigs() {
|
||||||
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/Templates/pihole-FTL-poststop.sh" "${PI_HOLE_INSTALL_DIR}/pihole-FTL-poststop.sh"
|
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/Templates/pihole-FTL-poststop.sh" "${PI_HOLE_INSTALL_DIR}/pihole-FTL-poststop.sh"
|
||||||
|
|
||||||
# If the user chose to install the dashboard,
|
# If the user chose to install the dashboard,
|
||||||
|
if [[ "${INSTALL_WEB_SERVER}" == true ]]; then
|
||||||
# set permissions on /etc/lighttpd/lighttpd.conf so pihole user (other) can read the file
|
# set permissions on /etc/lighttpd/lighttpd.conf so pihole user (other) can read the file
|
||||||
chmod o+x /etc/lighttpd
|
chmod o+x /etc/lighttpd
|
||||||
chmod o+r "${lighttpdConfig}"
|
chmod o+r "${lighttpdConfig}"
|
||||||
if [[ "${INSTALL_WEB_SERVER}" == true ]]; then
|
|
||||||
if grep -q -F "FILE AUTOMATICALLY OVERWRITTEN BY PI-HOLE" "${lighttpdConfig}"; then
|
if grep -q -F "FILE AUTOMATICALLY OVERWRITTEN BY PI-HOLE" "${lighttpdConfig}"; then
|
||||||
# Attempt to preserve backwards compatibility with older versions
|
# Attempt to preserve backwards compatibility with older versions
|
||||||
install -D -m 644 -T ${PI_HOLE_LOCAL_REPO}/advanced/${LIGHTTPD_CFG} "${lighttpdConfig}"
|
install -D -m 644 -T ${PI_HOLE_LOCAL_REPO}/advanced/${LIGHTTPD_CFG} "${lighttpdConfig}"
|
||||||
|
|
Loading…
Reference in a new issue