Merge pull request #13417 from RussellSenior/atftp-add-init-script

atftp: add init script and config file for atftpd
This commit is contained in:
Rosen Penev 2020-09-18 21:43:47 -07:00 committed by GitHub
commit efe525033d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 29 additions and 1 deletions

View File

@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=atftp
PKG_VERSION:=0.7.2
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
@ -53,6 +53,11 @@ endef
define Package/atftpd/install
$(INSTALL_DIR) $(1)/etc
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/atftpd.init $(1)/etc/init.d/atftpd
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_BIN) ./files/atftpd.conf $(1)/etc/config/atftpd
$(INSTALL_DIR) $(1)/srv/tftp
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)//usr/sbin/atftpd $(1)/usr/sbin/
endef

View File

@ -0,0 +1,3 @@
config service 'service'
option path '/srv/tftp'

17
net/atftp/files/atftpd.init Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2020 OpenWrt.org
START=95
PIDFILE=/tmp/run/atftpd.pid
start() {
config_load atftpd
config_get SRV service path "/srv/tftp"
config_get PORT service port 69
atftpd --pidfile $PIDFILE --user root.root --port $PORT --daemon $SRV
}
stop() {
kill $(cat $PIDFILE)
}

3
net/atftp/test.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
"$1" --version 2>&1 | grep "$2"