mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
19 lines
273 B
Bash
Executable file
19 lines
273 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
# PROVIDE: utx
|
|
# REQUIRE: DAEMON FILESYSTEMS
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="utx"
|
|
desc="Manage the user accounting database"
|
|
rcvar="utx_enable"
|
|
start_cmd="utx boot"
|
|
stop_cmd="utx shutdown"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|