No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
5 additions and
2 deletions
-
bibliotecha.sh
|
@ -149,7 +149,8 @@ function disable_networking_services { |
|
|
|
|
|
|
|
|
local services="dnsmasq hostapd" |
|
|
local services="dnsmasq hostapd" |
|
|
|
|
|
|
|
|
systemctl stop "${services}" |
|
|
# shellcheck disable=SC2086 |
|
|
|
|
|
systemctl stop ${services} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function configure_network_interfaces { |
|
|
function configure_network_interfaces { |
|
@ -256,7 +257,9 @@ function enable_networking_services { |
|
|
local services="dnsmasq hostapd" |
|
|
local services="dnsmasq hostapd" |
|
|
|
|
|
|
|
|
systemctl unmask hostapd |
|
|
systemctl unmask hostapd |
|
|
systemctl enable "${services}" |
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086 |
|
|
|
|
|
systemctl enable ${services} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function install_webserver { |
|
|
function install_webserver { |
|
|