Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37403946
en ru br
ALT Linux repos
S:20211218-alt1.k.393527.1

Group :: System/Kernel and hardware
RPM: kernel-modules-vhba-std-def

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

#!/bin/sh
#
# cdemu-daemon: CDEmu userspace daemon
#
# chkconfig: 345 92 02
# description: This is CDEmu userspace daemon that controls CDEmu block devices \
# and services device requests that are passed from kernel space

# Source function library.
. /etc/init.d/functions

LOCKFILE=/var/lock/subsys/vhba
MODULENAME=vhba
RETVAL=0

start()
{
action "Loading kernel module ($MODULENAME):" modprobe $MODULENAME
RETVAL=$?
[ $RETVAL = 0 ] && touch "$LOCKFILE" ||:
return $RETVAL
}

stop()
{
local RETVAL
action "Unloading kernel module ($MODULENAME):" modprobe -r $MODULENAME; RETVAL=$?
[ $RETVAL = 0 ] && rm -f "$LOCKFILE" ||:
return $RETVAL
}

restart()
{
stop
start
}

status()
{
if /sbin/lsmod | grep -qs "^$MODULENAME[[:space:]]"; then
echo "$MODULENAME module is loaded"
return 0
elif [ -f "$LOCKFILE" ]; then
echo "$MODULENAME module is not loaded, but subsystem is locked"
return 2
else
echo "$MODULENAME service is stopped"
return 3
fi
}

# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
condstop)
if [ -e "$LOCKFILE" ]; then
stop
fi
;;
condrestart)
if [ -e "$LOCKFILE" ]; then
restart
fi
;;
status)
status
RETVAL=$?
;;
*)
msg_usage "${0##*/} {start|stop|restart|condstop|condrestart|status}"
RETVAL=1
esac

exit $RETVAL

 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin