From ba13a592ccdcb3ad18b1d4a6eb9c826864f08891 Mon Sep 17 00:00:00 2001 From: billz Date: Sun, 22 Mar 2020 13:40:34 +0000 Subject: [PATCH] Standardize service name raspapd --- installers/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/common.sh b/installers/common.sh index ef39f5a4..322368ac 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -281,10 +281,10 @@ function default_configuration() { # Install and enable RaspAP daemon function enable_raspap_daemon() { install_log "Enabling RaspAP daemon" - echo "Disable with: sudo systemctl disable raspap.service" - sudo cp $webroot_dir/installers/raspap.service /lib/systemd/system/ || install_error "Unable to move raspap.service file" + echo "Disable with: sudo systemctl disable raspapd.service" + sudo cp $webroot_dir/installers/raspapd.service /lib/systemd/system/ || install_error "Unable to move raspap.service file" sudo systemctl daemon-reload - sudo systemctl enable raspap.service || install_error "Failed to enable raspap.service" + sudo systemctl enable raspapd.service || install_error "Failed to enable raspap.service" } # Configure IP forwarding, set IP tables rules, prompt to install RaspAP daemon