Use `install` to make the regex file

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2315/head
Mcat12 6 years ago
parent a55cc55338
commit 57af0ba0a4
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -1238,10 +1238,9 @@ installConfigs() {
# Install an empty regex file
if [[ ! -f "${regexFile}" ]]; then
touch "${regexFile}"
# Let PHP edit the regex file, if installed
install -o pihole -g "${LIGHTTPD_GROUP:-pihole}" -m 644 /dev/null "${regexFile}"
fi
chown pihole:pihole "${regexFile}"
chmod 664 "${regexFile}"
# If the user chose to install the dashboard,
if [[ "${INSTALL_WEB_SERVER}" == true ]]; then
@ -1269,9 +1268,6 @@ installConfigs() {
chown ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} /var/cache/lighttpd/compress
mkdir -p /var/cache/lighttpd/uploads
chown ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} /var/cache/lighttpd/uploads
# Let PHP edit the regex file
chown pihole:${LIGHTTPD_GROUP} "${regexFile}"
fi
}

Loading…
Cancel
Save