summaryrefslogtreecommitdiff
path: root/meta/recipes-extended/mdadm/files/mdmonitor.service
diff options
context:
space:
mode:
authorZheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>2019-02-21 14:06:42 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:25:03 +0000
commit4556380fc582646506fb69a18ad2c8ded904b8ba (patch)
tree3bb8a97c5de57b23561a59a0089b25841997b6f1 /meta/recipes-extended/mdadm/files/mdmonitor.service
parentaf397d31e467d6af00ef835537221bc211d94ca6 (diff)
downloadopenembedded-core-4556380fc582646506fb69a18ad2c8ded904b8ba.tar.gz
openembedded-core-4556380fc582646506fb69a18ad2c8ded904b8ba.tar.bz2
openembedded-core-4556380fc582646506fb69a18ad2c8ded904b8ba.zip
mdadm: add init and service scripts
Add init script and service file for sysvinit and systemd. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Hong Liu <hongl.fnst@cn.fujitsu.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta/recipes-extended/mdadm/files/mdmonitor.service')
-rw-r--r--meta/recipes-extended/mdadm/files/mdmonitor.service19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-extended/mdadm/files/mdmonitor.service b/meta/recipes-extended/mdadm/files/mdmonitor.service
new file mode 100644
index 0000000000..bd243b4498
--- /dev/null
+++ b/meta/recipes-extended/mdadm/files/mdmonitor.service
@@ -0,0 +1,19 @@
+# This file is part of mdadm.
+#
+# mdadm is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+[Unit]
+Description=Software RAID monitoring and management
+ConditionPathExists=/etc/mdadm.conf
+
+[Service]
+Type=forking
+PIDFile=/var/run/mdadm/mdadm.pid
+EnvironmentFile=-/etc/sysconfig/mdmonitor
+ExecStart=/sbin/mdadm --monitor --scan -f --pid-file=/var/run/mdadm/mdadm.pid
+
+[Install]
+WantedBy=multi-user.target