Merge pull request #5887 from pprindeville/fix-dhcpd.init-typeof
Fix dhcpd.init typeof
This commit is contained in:
commit
4750b7261e
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
PKG_NAME:=isc-dhcp
|
PKG_NAME:=isc-dhcp
|
||||||
UPSTREAM_NAME:=dhcp
|
UPSTREAM_NAME:=dhcp
|
||||||
PKG_VERSION:=4.4.0
|
PKG_VERSION:=4.4.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
@ -196,7 +196,7 @@ define Package/isc-dhcp-relay-$(BUILD_VARIANT)/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dhcrelay $(1)/usr/sbin
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dhcrelay $(1)/usr/sbin
|
||||||
$(INSTALL_DIR) $(1)/etc/config
|
$(INSTALL_DIR) $(1)/etc/config
|
||||||
$(INSTALL_DATA) ./files/etc/config/dhcrelay $(1)/etc/config
|
$(INSTALL_DATA) ./files/dhcrelay.conf $(1)/etc/config
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
$(INSTALL_BIN) ./files/dhcrelay4.init $(1)/etc/init.d/dhcrelay4
|
$(INSTALL_BIN) ./files/dhcrelay4.init $(1)/etc/init.d/dhcrelay4
|
||||||
endef
|
endef
|
||||||
|
|
|
@ -122,7 +122,7 @@ static_hosts() {
|
||||||
|
|
||||||
typeof() {
|
typeof() {
|
||||||
echo "$1" | awk '
|
echo "$1" | awk '
|
||||||
/^\d+\.\d+\.\d+\.d+$/ { print "ip\n"; next; }
|
/^\d+\.\d+\.\d+\.\d+$/ { print "ip\n"; next; }
|
||||||
/^(true|false)$/ { print "bool\n"; next; }
|
/^(true|false)$/ { print "bool\n"; next; }
|
||||||
/^\d+$/ { print "integer\n"; next; }
|
/^\d+$/ { print "integer\n"; next; }
|
||||||
/^"[^"]*"$/ { print "string\n"; next; }
|
/^"[^"]*"$/ { print "string\n"; next; }
|
||||||
|
|
Loading…
Reference in a new issue