blob: 5e4b86905059ccdb1d7f74fb38a331a3ed68836c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/runscript
program=/sbin/nslink
pidfile=/var/run/nslink.pid
start_pre() {
if ! [ -f /etc/nslink.conf ]; then
eerror "Configuration file /etc/nslink.conf not found"
return 1
fi
if ! grep -q -w nslink /proc/modules; then
modprobe nslink
fi
}
|