mdadm: Fix missing conffile and add initscript
authorDaniel Dickinson <openwrt@daniel.thecshore.com>
Thu, 15 Oct 2015 10:23:26 +0000 (06:23 -0400)
committerJo-Philipp Wich <jo@mein.io>
Wed, 18 May 2016 20:17:28 +0000 (22:17 +0200)
Start arrays on boot, stop them on shutdown, and enable
monitoring to syslog.

Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
package/utils/mdadm/Makefile
package/utils/mdadm/files/mdadm.config [new file with mode: 0644]
package/utils/mdadm/files/mdadm.init [new file with mode: 0644]

index 69eec5b3890afee6e36e8f000b33903f4b154605..0d5848c21812c5ae32c4f20f5d2b850b21128b0a 100644 (file)
@@ -33,6 +33,11 @@ define Package/mdadm/description
  A tool for managing Linux Software RAID arrays.
 endef
 
+define Package/mdadm/conffiles
+/etc/mdadm.conf
+/etc/config/mdadm
+endef
+
 TARGET_CFLAGS += -ffunction-sections -fdata-sections
 TARGET_LDFLAGS += -Wl,--gc-sections
 
@@ -47,6 +52,10 @@ endef
 define Package/mdadm/install
        $(INSTALL_DIR) $(1)/sbin
        $(INSTALL_BIN) $(PKG_BUILD_DIR)/mdadm $(1)/sbin
+       $(INSTALL_DIR) $(1)/etc/init.d
+       $(INSTALL_BIN) ./files/mdadm.init $(1)/etc/init.d/mdadm
+       $(INSTALL_DIR) $(1)/etc/config
+       $(INSTALL_DATA) ./files/mdadm.config $(1)/etc/config/mdadm
 endef
 
 $(eval $(call BuildPackage,mdadm))
diff --git a/package/utils/mdadm/files/mdadm.config b/package/utils/mdadm/files/mdadm.config
new file mode 100644 (file)
index 0000000..536228f
--- /dev/null
@@ -0,0 +1,3 @@
+config mdadm
+       option email root
+
diff --git a/package/utils/mdadm/files/mdadm.init b/package/utils/mdadm/files/mdadm.init
new file mode 100644 (file)
index 0000000..9da4684
--- /dev/null
@@ -0,0 +1,34 @@
+#!/bin/sh /etc/rc.common
+
+START=13
+STOP=98
+
+USE_PROCD=1
+PROG=/sbin/mdadm
+NAME=mdadm
+
+mdadm_email() {
+       local cfg="$1"
+       if [ ! -x /sbin/sendmail ]; then
+               return
+       fi
+       config_get email "$cfg" email
+}
+
+start_service() {
+       local email
+
+       config_load mdadm
+       config_foreach mdadm_email mdadm
+
+       $PROG --assemble --scan
+
+       procd_open_instance
+       procd_set_param command "$PROG" --monitor ${email:+--mail=$email} --syslog --scan
+       procd_close_instance
+}
+
+stop_service() {
+       $PROG --stop --scan
+}
+