aboutsummaryrefslogtreecommitdiffstats
path: root/mandriva/network-auth
blob: bfbae50d8e128d8557843b9d3cdc905d07d8d548 (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
28
#! /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