mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
Andrew Pantyukhin <infofarmer@FreeBSD.org> PR: ports/123419 Submitted by: infofarmer@ Approved by: maintainer
22 lines
389 B
Bash
22 lines
389 B
Bash
#!/bin/sh
|
|
#
|
|
# rcNG script to start uuidd at boot-time on rcNG-enabled systems,
|
|
# such as FreeBSD.
|
|
#
|
|
# (C) 2008 by Matthias Andree.
|
|
# Licensed under the modified (= 2-clause) BSD license.
|
|
|
|
# PROVIDE: uuidd
|
|
# BEFORE: DAEMON
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="uuidd"
|
|
rcvar=`set_rcvar`
|
|
command="%%PREFIX%%/sbin/uuidd"
|
|
procname="${command}"
|
|
|
|
: ${uuidd_enable="NO"}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|