blob: 8bc39869c77e4d53416f917af062ac62bdb73ec9 (
plain) (
blame)
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
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: webmin
# REQUIRE: LOGIN
#
# Add the following line to /etc/rc.conf to enable webmin:
#
# webmin_enable="YES"
#
webmin_enable=${webmin_enable:-"NO"}
. /etc/rc.subr
name=webmin
rcvar=webmin_enable
procname=%%PERL5%%
pidfile=/var/log/webmin/miniserv.pid
required_dirs=%%PREFIX%%/etc/webmin
command=%%PREFIX%%/etc/webmin/start
load_rc_config ${name}
run_rc_command "$1"
|