diff --git a/bibliotecha.sh b/bibliotecha.sh index a01c685..a260840 100755 --- a/bibliotecha.sh +++ b/bibliotecha.sh @@ -149,7 +149,8 @@ function disable_networking_services { local services="dnsmasq hostapd" - systemctl stop "${services}" + # shellcheck disable=SC2086 + systemctl stop ${services} } function configure_network_interfaces { @@ -256,7 +257,9 @@ function enable_networking_services { local services="dnsmasq hostapd" systemctl unmask hostapd - systemctl enable "${services}" + + # shellcheck disable=SC2086 + systemctl enable ${services} } function install_webserver {