6c1a5e837d
daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452
20 lines
266 B
Bash
Executable File
20 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: utx
|
|
# REQUIRE: DAEMON FILESYSTEMS
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="utx"
|
|
desc="Manage the user accounting database"
|
|
start_cmd="utx boot"
|
|
stop_cmd="utx shutdown"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|