Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > c27093752d43d6c3b527359fa23f0d3e > files > 8

mt-st-1.1-6.mga3.src.rpm

#!/bin/bash
#
# stinit	This calls /sbin/stinit if /etc/stinit.def exists
# 
# chkconfig: 2345 40 99
# description: calls stinit if /etc/stinit.def exists
#
### BEGIN INIT INFO
# Provides: stinit
# Default-Start: 2 3 4 5
# Short-Description: calls stinit if /etc/stinit.def exists
# Description: This calls /sbin/stinit if /etc/stinit.def exists
### END INIT INFO

. /etc/init.d/functions

# See how we were called.
case "$1" in
  start)
	[ -f /etc/stinit.def ] && /sbin/stinit
        ;;
  stop)
	;;
  *)
        echo $"Usage: $0 {start}"
        exit 1
esac
exit 0