xref: /dflybsd-src/etc/rc.d/sysdb (revision ce0833857e05eba4d13f3fd8a4d049ea68c5ffa4)
19c600e7dSMatthew Dillon#!/bin/sh
29c600e7dSMatthew Dillon#
39c600e7dSMatthew Dillon# $NetBSD: sysdb,v 1.9 2002/03/22 04:34:00 thorpej Exp $
49c600e7dSMatthew Dillon# $FreeBSD: src/etc/rc.d/sysdb,v 1.2 2002/06/13 22:14:36 gordon Exp $
5*e54c8dc8SAaron LI#
69c600e7dSMatthew Dillon
79c600e7dSMatthew Dillon# PROVIDE: sysdb
89c600e7dSMatthew Dillon# REQUIRE: mountcritremote
99c600e7dSMatthew Dillon
109c600e7dSMatthew Dillon. /etc/rc.subr
119c600e7dSMatthew Dillon
129c600e7dSMatthew Dillonname="sysdb"
139c600e7dSMatthew Dillonstart_cmd="sysdb_start"
149c600e7dSMatthew Dillonstop_cmd=":"
159c600e7dSMatthew Dillon
169c600e7dSMatthew Dillonsysdb_start()
179c600e7dSMatthew Dillon{
189c600e7dSMatthew Dillon	echo "Building databases..."
1925606b42SSascha Wildner	install -c -m 644 -g wheel /dev/null /var/run/utmpx
209c600e7dSMatthew Dillon}
219c600e7dSMatthew Dillon
229c600e7dSMatthew Dillonload_rc_config $name
239c600e7dSMatthew Dillonrun_rc_command "$1"
24