Sophie

Sophie

distrib > Mandriva > cooker > x86_64 > by-pkgid > 09f8482796b422dd56a45b97ec1e48fb > files > 42

initscripts-9.34-3.x86_64.rpm

#! /bin/bash
#
### BEGIN INIT INFO
# Provides: $named network-auth
# Required-Start: $network
# Required-Stop: $network
# Should-Start: ypbind winbind ldap
# X-Start-Before: systemd-user-sessions
# 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