Sophie

Sophie

distrib > Mandriva > 2010.1 > x86_64 > media > main-updates > by-pkgid > b37503e09ea539176fa3a2506fa8882d > files > 45

initscripts-8.99-16.1mdv2010.2.x86_64.rpm

#! /bin/bash
#
### BEGIN INIT INFO
# Provides: network-auth
# Required-Start: $network
# Required-Stop: $network
# Should-Start: ypbind winbind ldap
# Default-Start: 2 3 4 5
# Short-Description: Requires network to be up if enabled
# Description: Requires network to be up if enabled.
### END INIT INFO

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


case "$1" in
  start)
	;;
  stop)
	;;
  *)
        gprintf "Usage: %s\n" "$(basename $0) {start|stop}"
        exit 1
esac

exit 0