blob: ceee0a155169a2e4f20da99b4b58870ae44ea171 (
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
27
|
#!/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"}
. %%RC_SUBR%%
name=webmin
rcvar=`set_rcvar`
prefix=%%PREFIX%%
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"
|