mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-01-11 14:34:44 +00:00
Remove -t SOURCE and DIRECTORY reversal flag on install.
Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
This commit is contained in:
parent
b79ff05e29
commit
ad20d5ac1c
1 changed files with 2 additions and 2 deletions
|
@ -2026,8 +2026,8 @@ FTLinstall() {
|
|||
install -T -m 0755 "${PI_HOLE_LOCAL_REPO}/advanced/Templates/pihole-FTL.service" "/etc/init.d/pihole-FTL"
|
||||
|
||||
# Install template if it does not exist
|
||||
if [[ ! -f /etc/pihole/pihole-FTL.conf ]]; then
|
||||
install -o "${USER}" -Dm644 -t "${PI_HOLE_INSTALL_DIR}/advanced/Templates/pihole-FTL.conf" "/etc/pihole/pihole-FTL.conf"
|
||||
if [[ ! -f "/etc/pihole/pihole-FTL.conf" ]]; then
|
||||
install -o "${USER}" -Dm644 "${PI_HOLE_INSTALL_DIR}/advanced/Templates/pihole-FTL.conf" "/etc/pihole/pihole-FTL.conf"
|
||||
fi
|
||||
|
||||
local ftlBranch
|
||||
|
|
Loading…
Reference in a new issue