From 61bfaf0354b44ae2d4927c54983eaa4c74cd3e0b Mon Sep 17 00:00:00 2001 From: Andreas Ehmanns Date: Thu, 28 Apr 2022 15:42:07 +0200 Subject: [PATCH] package/tftpd: add include of config file to init script HPA's tftp server init script does not support include of a configuration file. So changing daemon parameters would cause a modification of the init script. Similar to NFS, dropbear, DHCP, SNMP and other network services in buildroot, this patch adds an include of /etc/default/tftpd to the init script. So any user can change the default behaviour by adding its own configuration file instead of changing the init script. Signed-off-by: Andreas Ehmanns Signed-off-by: Yann E. MORIN --- package/tftpd/S80tftpd-hpa | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/tftpd/S80tftpd-hpa b/package/tftpd/S80tftpd-hpa index 4e8361faa7..8ae15150a1 100644 --- a/package/tftpd/S80tftpd-hpa +++ b/package/tftpd/S80tftpd-hpa @@ -11,6 +11,8 @@ DAEMON=/usr/sbin/$NAME PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/S80tftpd-hpa +[ -r "/etc/default/$NAME" ] && . "/etc/default/$NAME" + # # Function that starts the daemon/service. #