Browse Source

Don't use bogus quoting

master
Luke Murphy 5 years ago
parent
commit
608eb7d1e3
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 7
      bibliotecha.sh

7
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 {

Loading…
Cancel
Save