From c8b2737fbf8fa3a421afd82bb3f14b99084906bc Mon Sep 17 00:00:00 2001 From: billz Date: Wed, 6 Mar 2019 19:14:17 +0000 Subject: [PATCH] Renamed --- installers/servicesdisable.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 installers/servicesdisable.sh diff --git a/installers/servicesdisable.sh b/installers/servicesdisable.sh new file mode 100644 index 00000000..a59f154e --- /dev/null +++ b/installers/servicesdisable.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# When wireless client AP mode is enabled, the hostapdstart script handles starting up network services +# in a specific order and timing to avoid race conditions. Disabling them here ensures they are not run +# at system startup. + +sudo systemctl stop hostapd +sudo systemctl stop dnsmasq +sudo systemctl stop dhcpcd +sudo systemctl disable hostapd +sudo systemctl disable dnsmasq +sudo systemctl disable dhcpcd \ No newline at end of file