]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
Disabled one more warning.
authorTomek Mrugalski <tomasz@isc.org>
Mon, 4 Mar 2019 18:06:08 +0000 (19:06 +0100)
committerTomek Mrugalski <tomek@isc.org>
Wed, 6 Mar 2019 14:15:29 +0000 (09:15 -0500)
src/bin/keactrl/keactrl.in

index 0df5543bde405a6660e153544c406b25d46142ca..7a363e6c8da4d74d63c241d02698e39545af0271 100644 (file)
@@ -466,6 +466,9 @@ case ${command} in
 
         # Run servers if they are on the list of servers from the command line
         # and if they are enabled in the keactrl configuration file.
+        # The variables (dhcp4_srv, dhcp6_serv, dhcp_ddns_srv etc) are set in the
+        # keactrl.conf file that shellcheck is unable to read.
+        # shellcheck disable=SC2154
         run_conditional "dhcp4" "start_server ${dhcp4_srv} -c ${kea_dhcp4_config_file} ${args}" 1
         run_conditional "dhcp6" "start_server ${dhcp6_srv} -c ${kea_dhcp6_config_file} ${args}" 1
         run_conditional "dhcp_ddns" "start_server ${dhcp_ddns_srv} -c ${kea_dhcp_ddns_config_file} \