aboutsummaryrefslogtreecommitdiffstats
path: root/mandriva/network-auth
blob: 8c404ef9dcb8fe1ebc7db2893b87eaf7c350905e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /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