remove things committed to cm

This commit is contained in:
Maciej Krüger 2022-05-20 15:02:08 +02:00 committed by Alexander List
parent 8761aa89d7
commit cf6e3ae1b3
3 changed files with 0 additions and 41 deletions

View File

@ -1,19 +0,0 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=ddhcpd-nextnode
PKG_RELEASE:=1
include ../gluon.mk
define Package/ddhcpd-nextnode
SECTION:=net
CATEGORY:=Network
DEPENDS:=+ddhcpd
TITLE:=ddhcpd nextnode integration
endef
define Package/ddhcpd-nextnode/description
nextnode integration for ddhcpd
endef
$(eval $(call BuildPackage,ddhcpd-nextnode))

View File

@ -1 +0,0 @@
need_string_match(in_domain({'next_node', 'ip4'}), '^%d+.%d+.%d+.%d+$')

View File

@ -1,21 +0,0 @@
#!/usr/bin/lua
local uci = require('simple-uci').cursor()
local site = require "gluon.site"
local payload = site.next_node.ip4()
local len = 4 -- this has to be 4
uci:section('ddhcpd', 'dhcp_option', 'nextnode_router', {
len = len,
payload = payload,
code = '3',
})
uci:section('ddhcpd', 'dhcp_option', 'nextnode_dns', {
len = len,
payload = payload,
code = '6',
})
uci:save('ddhcpd')