From 70c9f8c3560c20f2dde859c7477be0797c985ee6 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sun, 7 Jul 2024 21:30:41 -0500 Subject: [PATCH] Correct --dhcp-hosts help example. --- src/scripts/create_ap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scripts/create_ap b/src/scripts/create_ap index ed093cc..c6e4599 100755 --- a/src/scripts/create_ap +++ b/src/scripts/create_ap @@ -65,9 +65,9 @@ usage() { echo " --dhcp-dns Set DNS returned by DHCP" echo " --dhcp-hosts Add list of dnsmasq.conf 'dhcp-host=' values" echo " If ETC_HOSTS=1, it will use the ip addresses for the named hosts in that /etc/hosts." - echo " Othwise, the following syntax would work --dhcp-hosts \"192.168.12.2,foo 192.168.12.3,bar\"" - echo " See https://github.com/imp/dnsmasq/blob/master/dnsmasq.conf.example for other" - echo " valid dnsmasq dhcp-host parameters." + echo " Othwise, the following syntax would work --dhcp-hosts \"host1,192.168.12.2 host2,192.168.12.3\"" + echo " See https://github.com/imp/dnsmasq/blob/770bce967cfc9967273d0acfb3ea018fb7b17522/dnsmasq.conf.example#L238" + echo " for other valid dnsmasq dhcp-host parameters." echo " --daemon Run create_ap in the background" echo " --pidfile Save daemon PID to file" echo " --logfile Save daemon messages to file"