2012-02-24 17:03:50 +04:00
#!/bin/bash
#
2017-10-25 18:02:31 +03:00
# Copyright (C) 2012-2017 Red Hat, Inc. All rights reserved.
2012-02-24 17:03:50 +04:00
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2012-02-24 17:03:50 +04:00
#
# This file is part of LVM2.
# It is required for the proper handling of failures of LVM2 mirror
# devices that were created using the -m option of lvcreate.
#
#
# chkconfig: 12345 02 99
# description: Starts and stops LVM metadata daemon
#
# For Red-Hat-based distributions such as Fedora, RHEL, CentOS.
#
### BEGIN INIT INFO
# Provides: lvm2-lvmetad
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Default-Start: 1 2 3 4 5
# Default-Stop: 0 6
# Short-Description: A daemon that maintains LVM metadata state for improved
# performance by avoiding further scans while running
# subsequent LVM commands or while using lvm2app library.
### END INIT INFO
. /etc/init.d/functions
DAEMON=lvmetad
2017-10-25 18:08:00 +03:00
sbindir="@SBINDIR@"
2012-02-24 17:03:50 +04:00
2017-10-25 18:08:00 +03:00
LOCK_FILE="@DEFAULT_SYS_LOCK_DIR@/subsys/$DAEMON"
2012-06-21 16:41:52 +04:00
PID_FILE="@LVMETAD_PIDFILE@"
2012-02-24 17:03:50 +04:00
rh_status() {
2017-10-25 18:02:31 +03:00
status -p "$PID_FILE" "$DAEMON"
2012-02-24 17:03:50 +04:00
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
start()
{
ret=0
2017-10-25 18:08:00 +03:00
action "Starting LVM metadata daemon:" "$sbindir/$DAEMON" || ret=$?
2012-02-24 17:03:50 +04:00
return $ret
}
stop()
{
ret=0
2017-10-25 18:02:31 +03:00
action "Signaling LVM metadata daemon to exit:" killproc -p "$PID_FILE" "$DAEMON" -TERM || ret=$?
2012-02-24 17:03:50 +04:00
return $ret
}
rtrn=1
# See how we were called.
case "$1" in
start)
rh_status_q && exit 0
start
rtrn=$?
2017-10-25 18:02:31 +03:00
[ "$rtrn" = 0 ] && touch "$LOCK_FILE"
2012-02-24 17:03:50 +04:00
;;
stop|force-stop)
rh_status_q || exit 0
stop
rtrn=$?
2017-10-25 18:02:31 +03:00
[ "$rtrn" = 0 ] && rm -f "$LOCK_FILE"
2012-02-24 17:03:50 +04:00
;;
restart)
if stop
then
start
fi
rtrn=$?
;;
condrestart|try-restart)
rh_status_q || exit 0
if stop
then
start
fi
rtrn=$?
;;
status)
2012-02-24 17:45:37 +04:00
rh_status
rtrn=$?
2012-02-24 17:03:50 +04:00
;;
*)
echo $"Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}"
;;
esac
exit $rtrn