blob: 2fee83a8488ea1ab27f24c00d59ae3d34aa41c83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/files/webmin-gentoo-init,v 1.2 2004/02/13 19:10:36 vapier Exp $
depend() {
need net logger
}
start() {
ebegin "Starting webmin"
/etc/webmin/start
eend $?
}
stop() {
ebegin "Stopping webmin"
/etc/webmin/stop
eend $?
}
|