summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Scholz <jan.scholz@googlemail.com>2012-05-09 11:59:42 +0200
committerJan Scholz <jan.scholz@googlemail.com>2012-05-09 12:08:13 +0200
commit679b9eda92a76221c70729ba4ed55b60c38382d5 (patch)
tree2fafbcc401bc371ab645fe21657b45f299417fc4
parentsys-apps/systemd: fix '@' in filename handling (diff)
downloadsystemd-679b9eda92a76221c70729ba4ed55b60c38382d5.tar.gz
systemd-679b9eda92a76221c70729ba4ed55b60c38382d5.tar.bz2
systemd-679b9eda92a76221c70729ba4ed55b60c38382d5.zip
add fcron service
according to fcron's developer, this service file will be included in the next release, see http://permalink.gmane.org/gmane.comp.sysutils.fcron.devel/66 let's have it now
-rw-r--r--sys-apps/systemd-units/Manifest1
-rw-r--r--sys-apps/systemd-units/files/services-basic/fcron.service13
2 files changed, 14 insertions, 0 deletions
diff --git a/sys-apps/systemd-units/Manifest b/sys-apps/systemd-units/Manifest
index d452c5e..43991d1 100644
--- a/sys-apps/systemd-units/Manifest
+++ b/sys-apps/systemd-units/Manifest
@@ -1,4 +1,5 @@
AUX services-basic/atd.service 239 RMD160 bdd814328e6ed7a8b47ff4b1969a296dd87e0a8c SHA1 f15231fec34bbf68c7e3c646e228f4aa7653890e SHA256 593c307bee13c01726d7f5f20246759c44365dc3fc744026239595d4454f4147
+AUX services-basic/fcron.service 225 RMD160 df30003b97c2ac14e58084b4c11fb1418439feac SHA1 0f6aed2cd9dcfc59a7f08f881c5e1c4326590f70 SHA256 436047f2418392351162a40e6c3d30e183c1ca70b5a6316a098c96a6d5408d46
AUX services-basic/metalog.service 118 RMD160 b2c8936cb4e3fdb9428b784e2e829d24a6c0e375 SHA1 c963db4f06c2da98c4de3eba9518491014f68c1e SHA256 160a01a618a0c218fe1b56d74c24b6042a22c82a96c11711019600f0ab557939
AUX services-basic/syslog-ng.service 150 RMD160 322a68be82f21735248f02cedf67021b718d2234 SHA1 f493b9c0af849671fccafbb6ee3fd23a2259064a SHA256 8e936cee3ffb7941c46b418b3208246e46948404ac0f062a0ef2f3f94d8ecc83
AUX services-basic/vixie-cron.service 158 RMD160 5135b058277a8c68e89fad06ac5096c8f95acaf9 SHA1 ec4cd323d1404ac10f72819d56cf565e75eff084 SHA256 54c27aef74a98ad7a2c74456b4e8aa933ae13aa9ee7ac2dbffabc449a7c95b3d
diff --git a/sys-apps/systemd-units/files/services-basic/fcron.service b/sys-apps/systemd-units/files/services-basic/fcron.service
new file mode 100644
index 0000000..68a7323
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-basic/fcron.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=fcron Cron Daemon
+After=syslog.target
+
+[Service]
+Type=simple
+ExecStart=/usr/sbin/fcron -f
+ExecReload=/bin/kill -USR1 $MAINPID
+PIDFile=/var/run/fcron.pid
+Restart=always
+
+[Install]
+WantedBy=multi-user.target