blob: 38cc0a6c4cc1bb5f37551322ee244f6333eb6821 (
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
|
#!/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=%%PERL%%
pidfile=/var/log/webmin/miniserv.pid
required_dirs=%%PREFIX%%/etc/webmin
command=%%PREFIX%%/etc/webmin/start
load_rc_config ${name}
run_rc_command "$1"
|