From cd539adc4a30ce1aa659bf22490381be764de403 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 5 Feb 2017 14:48:23 +0100 Subject: add initial fwupdate application --- package/fwupdate/files/fwupdate.init | 27 +++++++++++++++++++++++++++ package/fwupdate/files/fwupdate.service | 9 +++++++++ 2 files changed, 36 insertions(+) create mode 100644 package/fwupdate/files/fwupdate.init create mode 100644 package/fwupdate/files/fwupdate.service (limited to 'package/fwupdate/files') diff --git a/package/fwupdate/files/fwupdate.init b/package/fwupdate/files/fwupdate.init new file mode 100644 index 000000000..bf7047796 --- /dev/null +++ b/package/fwupdate/files/fwupdate.init @@ -0,0 +1,27 @@ +#!/bin/sh +#PKG fwupdate +#INIT 99 + +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${fwupdate:-NO}" = x"NO" && exit 0 + test x"$fwupdate" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start + exec sh $0 start + ;; +start) + /usr/sbin/fwvalidate + ;; +stop) + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "usage: $0 (start|stop|restart)" + exit 1 +esac +exit $? diff --git a/package/fwupdate/files/fwupdate.service b/package/fwupdate/files/fwupdate.service new file mode 100644 index 000000000..f54519547 --- /dev/null +++ b/package/fwupdate/files/fwupdate.service @@ -0,0 +1,9 @@ +[Unit] +Description=Firmware Update Validation +After=dropbear.service + +[Service] +ExecStart=/usr/sbin/fwvalidate + +[Install] +WantedBy=multi-user.target -- cgit v1.2.3