From f73dcd4e99c3ceaf2b98a13ac3b0225dc765055c Mon Sep 17 00:00:00 2001 From: billz Date: Fri, 19 Apr 2019 11:36:09 +0000 Subject: [PATCH] Install raspap.service daemon --- installers/common.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installers/common.sh b/installers/common.sh index 8f9da348..5c885373 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -220,6 +220,10 @@ function default_configuration() { # Force a reload of new settings in /etc/rc.local sudo systemctl restart rc-local.service sudo systemctl daemon-reload + + # Install and enable RaspAP daemon + sudo mv $webroot_dir/installers/raspap.service /lib/systemd/system/ || install_error "Unable to move raspap.service file" + #sudo systemctl enable raspap.service }