From 5bb549868be492f388c2f8fec368ba3d01433dfd Mon Sep 17 00:00:00 2001 From: billz Date: Wed, 6 Mar 2019 19:13:17 +0000 Subject: [PATCH] Minor: move service control script --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index a79a2b3f..1cab75ab 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -122,7 +122,7 @@ function create_hostapd_scripts() { # Move logging shell scripts sudo mv "$webroot_dir/installers/"*log.sh "$raspap_dir/hostapd" || install_error "Unable to move logging scripts" # Move service control shell scripts - sudo mv "$webroot_dir/installers/"services*.sh "$raspap_dir/hostapd" || install_error "Unable to move service control scripts" + sudo mv "$webroot_dir/installers/"service*.sh "$raspap_dir/hostapd" || install_error "Unable to move service control scripts" # Make enablelog.sh and disablelog.sh not writable by www-data group. sudo chown -c root:"$raspap_user" "$raspap_dir/hostapd/"*.sh || install_error "Unable change owner and/or group." sudo chmod 750 "$raspap_dir/hostapd/"*.sh || install_error "Unable to change file permissions."