From 608eb7d1e34394a074287dea77ebd4c6bdc32ba3 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 4 Jul 2019 17:23:10 +0200 Subject: [PATCH] Don't use bogus quoting --- bibliotecha.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 {