From e4757a06ae4c06d78bb31cc4ed9129cad2f15e33 Mon Sep 17 00:00:00 2001 From: billz Date: Wed, 7 Aug 2019 09:28:20 +0100 Subject: [PATCH] Minor: use install_log for raspap.service --- installers/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index fa4d1591..70a2b245 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -236,7 +236,8 @@ function default_configuration() { echo -n "Enable RaspAP control service (Recommended)? [Y/n]: " read answer if [ "$answer" != 'n' ] && [ "$answer" != 'N' ]; then - echo -n "Enabling RaspAP daemon. Disable with: sudo systemctl disable raspap.service" + 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" sudo systemctl enable raspap.service || install_error "Failed to enable raspap.service" fi