summaryrefslogtreecommitdiff
path: root/system/fcron/fcron.initd
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-06-26 19:29:44 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-06-26 19:29:44 -0500
commit560fb0c0ef4e612ec8bc9cbb5e5b76bed0e1e5f3 (patch)
tree6722e33909df95b30a28a7465ca73b07e4704b5f /system/fcron/fcron.initd
parentb71fe05dce49b3453b5b556be023b831344a62a8 (diff)
downloadpackages-560fb0c0ef4e612ec8bc9cbb5e5b76bed0e1e5f3.tar.gz
packages-560fb0c0ef4e612ec8bc9cbb5e5b76bed0e1e5f3.tar.bz2
packages-560fb0c0ef4e612ec8bc9cbb5e5b76bed0e1e5f3.tar.xz
packages-560fb0c0ef4e612ec8bc9cbb5e5b76bed0e1e5f3.zip
system/fcron: overhaul alpine package, add for POSIX
Diffstat (limited to 'system/fcron/fcron.initd')
-rwxr-xr-xsystem/fcron/fcron.initd15
1 files changed, 15 insertions, 0 deletions
diff --git a/system/fcron/fcron.initd b/system/fcron/fcron.initd
new file mode 100755
index 000000000..ff0aba09c
--- /dev/null
+++ b/system/fcron/fcron.initd
@@ -0,0 +1,15 @@
+#!/sbin/openrc-run
+
+# Initscript by Diaz Devera Victor <vitronic2@gmail.com>
+# Copyright 2014 Alpine Linux
+# Distributed under the terms of the GNU General Public License v2
+
+#name="advanced periodic command scheduler fcron"
+name="fcron"
+pidfile="/run/fcron"
+command=/usr/sbin/fcron
+
+depend() {
+ need localmount
+ need logger
+}