mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
- dnsmasq:
- allow listening to all interfaces again to serve DHCP leases
- disable most of the default DHCP options, keep broadcast and
netmask because when dnsmasq can infer these they are better
than breaking networking for clients -- note, they can still
be overridden from global/subnet/host scope -- and for relay
setups they need to be supplied anyway
- confd:
- drop per-interface dnsmasq, although practical for many use-cases,
having a per-subnet focused server means improved integration with
future stand-alone dhcp relay setup
- implement suggested, simplified, yang model
Fixes #703
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
17 lines
710 B
Makefile
17 lines
710 B
Makefile
PYTHON_STATD_VERSION = 1.0
|
|
PYTHON_STATD_SITE_METHOD = local
|
|
PYTHON_STATD_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/statd/python
|
|
PYTHON_STATD_LICENSE = BSD-3-Clause
|
|
PYTHON_STATD_LICENSE_FILES = LICENSE
|
|
PYTHON_STATD_DEPENDENCIES = host-python3 python3 host-python-poetry-core dbus-python
|
|
PYTHON_STATD_SETUP_TYPE = pep517 # poetry
|
|
|
|
define PYTHON_STATD_MOVE_BINARIES
|
|
mkdir -p $(TARGET_DIR)/usr/libexec/statd
|
|
mv $(TARGET_DIR)/usr/bin/yanger $(TARGET_DIR)/usr/libexec/statd/
|
|
mv $(TARGET_DIR)/usr/bin/cli-pretty $(TARGET_DIR)/usr/libexec/statd/
|
|
mv $(TARGET_DIR)/usr/bin/ospf-status $(TARGET_DIR)/usr/libexec/statd/
|
|
endef
|
|
PYTHON_STATD_POST_INSTALL_TARGET_HOOKS += PYTHON_STATD_MOVE_BINARIES
|
|
$(eval $(python-package))
|