mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
20 lines
308 B
Plaintext
Executable File
20 lines
308 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
|
|
# Distributed under the terms of the GNU General Public License, v2 or later
|
|
|
|
depend() {
|
|
need net logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting webmin"
|
|
/etc/webmin/start
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping webmin"
|
|
/etc/webmin/stop
|
|
eend $?
|
|
}
|