[BACK]Return to sysdb CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / etc / rc.d

File: [cvs.NetBSD.org] / src / etc / rc.d / sysdb (download)

Revision 1.21, Thu Jun 18 22:00:04 2009 UTC (14 years, 10 months ago) by christos
Branch: MAIN
CVS Tags: matt-premerge-20091211, matt-mips64-premerge-20101231, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.20: +2 -2 lines

now that pwd_mkdb does not change the version, warn if we still have version
0 databases.

#!/bin/sh
#
# $NetBSD: sysdb,v 1.21 2009/06/18 22:00:04 christos Exp $
#

# PROVIDE: sysdb
# REQUIRE: mountcritremote
# BEFORE:  DAEMON

$_rc_subr_loaded . /etc/rc.subr

name="sysdb"
rcvar=$name
start_cmd="sysdb_start"
stop_cmd=":"
extra_commands="devdb utmp services netgroup password"
devdb_cmd="build_devdb"
utmp_cmd="build_utmp"
services_cmd="build_services"
netgroup_cmd="build_netgroup"
password_cmd="build_password"
echo=:

sysdb_start()
{
	echo -n "Building databases:"
	echo=echo
	comma=" "
	$devdb_cmd
	$utmp_cmd
	$services_cmd
	$netgroup_cmd
	$password_cmd
	echo " done"
}

check_file()
{
	local src="$1"
	local db="$2"

	shift 2
	if [ ! -e "$src" ]; then
		return
	fi
	if [ \( ! -f "$db" \) -o \( "$src" -nt "$db" \) ]; then
		$echo -n "$comma$(basename "$src")"
		comma=", "
		"$@"
	fi
}

build_services()
{
	check_file /etc/services /var/db/services.db services_mkdb -q
}

build_netgroup()
{
	check_file /etc/netgroup /var/db/netgroup.db netgroup_mkdb
}

build_devdb()
{
	check_file /dev /var/run/dev.db dev_mkdb
}

build_password()
{
	local p=/etc/master.passwd
	check_file $p /etc/spwd.db pwd_mkdb -w $p
}

build_utmp()
{
	#	Re-create /var/run/utmp and /var/run/utmpx, which are
	#	deleted by mountcritlocal but can't be recreated by it
	#	because install and chown may not be available then
	#	(possibly no /usr).
	#
	local i
	for i in "" x; do
		if [ ! -f /var/run/utmp$i ]; then
			$echo -n "${comma}utmp$i"
			comma=", "
			install -c -m 664 -g utmp /dev/null /var/run/utmp$i
		fi
	done
}

load_rc_config $name
run_rc_command "$1"