mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Remove CreateLogFile function, as this is handled by the FTL service
Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
parent
51765b1f65
commit
238a56cac3
1 changed files with 1 additions and 26 deletions
|
@ -1311,27 +1311,6 @@ install_dependent_packages() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create logfiles if necessary
|
|
||||||
CreateLogFile() {
|
|
||||||
local str="Creating log and changing owner to pihole"
|
|
||||||
echo ""
|
|
||||||
echo -ne " ${INFO} ${str}..."
|
|
||||||
# If the pihole log does not exist,
|
|
||||||
if [[ ! -f "/var/log/pihole.log" ]]; then
|
|
||||||
# Make it,
|
|
||||||
touch /var/log/pihole.log
|
|
||||||
# set the permissions,
|
|
||||||
chmod 644 /var/log/pihole.log
|
|
||||||
# and owners
|
|
||||||
chown pihole:pihole /var/log/pihole.log
|
|
||||||
echo -e "${OVER} ${TICK} ${str}"
|
|
||||||
# Otherwise,
|
|
||||||
else
|
|
||||||
# the file should already exist
|
|
||||||
echo -e " ${COL_LIGHT_GREEN}log already exists!${COL_NC}"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Install the Web interface dashboard
|
# Install the Web interface dashboard
|
||||||
installPiholeWeb() {
|
installPiholeWeb() {
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -1577,8 +1556,6 @@ installPihole() {
|
||||||
installScripts
|
installScripts
|
||||||
# configs,
|
# configs,
|
||||||
installConfigs
|
installConfigs
|
||||||
# and create the log file
|
|
||||||
CreateLogFile
|
|
||||||
# If the user wants to install the dashboard,
|
# If the user wants to install the dashboard,
|
||||||
if [[ "${INSTALL_WEB}" == true ]]; then
|
if [[ "${INSTALL_WEB}" == true ]]; then
|
||||||
# do so
|
# do so
|
||||||
|
@ -1615,8 +1592,6 @@ updatePihole() {
|
||||||
installScripts
|
installScripts
|
||||||
# Install config files
|
# Install config files
|
||||||
installConfigs
|
installConfigs
|
||||||
# Create the log file
|
|
||||||
CreateLogFile
|
|
||||||
# If the user wants to install the dasboard,
|
# If the user wants to install the dasboard,
|
||||||
if [[ "${INSTALL_WEB}" == true ]]; then
|
if [[ "${INSTALL_WEB}" == true ]]; then
|
||||||
# do so
|
# do so
|
||||||
|
|
Loading…
Reference in a new issue