From ba7a2904ea07c0317149307c3593701849b4e9ba Mon Sep 17 00:00:00 2001 From: Bill Zimmerman Date: Sat, 9 Mar 2019 19:45:27 +0100 Subject: [PATCH] Hotfix: enable hostapd.service --- installers/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index 8fa53173..5ab2a078 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -273,8 +273,9 @@ function patch_system_files() { install_log "Sudoers file already patched" fi - # Unmask hostapd.service + # Unmask and enable hostapd.service sudo systemctl unmask hostapd.service + sudo systemctl enable hostapd.service }