mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452
19 lines
247 B
Bash
Executable file
19 lines
247 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: rwho
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="rwhod"
|
|
desc="System status server"
|
|
rcvar="rwhod_enable"
|
|
command="/usr/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|