aboutsummaryrefslogtreecommitdiff
path: root/src/mdadm/mdadm
blob: 9bf468e9822a848ffda4170dcccc05fa3c7b6a85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

pidfile=/run/mdadm.pid
if [[ -r $pidfile ]]; then
  read -r PID <"$pidfile"
  if [[ $PID && ! -d /proc/$PID ]]; then
    # stale pidfile
    unset PID
    rm -f "$pidfile"
  fi
fi

case $1 in
  start)
    stat_busy "Starting mdadm RAID Monitor"
    if [[ -z $PID ]] && mdadm --monitor --scan -i "$pidfile" -f; then
      add_daemon mdadm
      stat_done
    else
      stat_fail
    fi
    ;;
  stop)
    stat_busy "Stopping mdadm RAID Monitor"
    if [[ $PID ]] && kill "$PID" &>/dev/null; then
      rm_daemon mdadm
      stat_done
    else
      stat_fail
    fi
    ;;
  restart)
    $0 stop
    sleep 1
    $0 start
    ;;
  *)
    echo "usage: $0 {start|stop|restart}"
esac