head	1.3;
access;
symbols
	RELENG_5_1_0_RELEASE:1.2
	RELENG_5_1:1.2.0.4
	RELENG_5_1_BP:1.2
	RELENG_5_0_0_RELEASE:1.2
	RELENG_5_0:1.2.0.2
	RELENG_5_0_BP:1.2;
locks; strict;
comment	@# @;


1.3
date	2003.06.20.09.47.09;	author phk;	state dead;
branches;
next	1.2;

1.2
date	2002.10.12.10.31.31;	author schweikh;	state Exp;
branches;
next	1.1;

1.1
date	2002.06.13.22.14.36;	author gordon;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Remove the devdb stuff, the kernel answers these questions just fine.
@
text
@#!/bin/sh
#
# $FreeBSD: src/etc/rc.d/devdb,v 1.2 2002/10/12 10:31:31 schweikh Exp $
#

# PROVIDE: devdb
# REQUIRE: syslogd
# KEYWORD: FreeBSD

# Build device name databases if we are not using DEVFS
#
if sysctl vfs.devfs.generation > /dev/null 2>&1; then
	rm -f /var/run/dev.db
else
	dev_mkdb
fi

@


1.2
log
@Fix style bugs:
* Space -> tabs conversion.
* Removed blanks before semicolon in "if ... ; then".
* Proper indentation of misindented lines.
* Put a full stop after some comments.
* Removed whitespace at end of line.

Approved by:	silence from gordon
@
text
@d3 1
a3 1
# $FreeBSD$
@


1.1
log
@Merge in all the changes that Mike Makonnen has been maintaining for a
while. This is only the script pieces, the glue for the build comes next.

Submitted by:	Mike Makonnen <makonnen@@pacbell.net>
Reviewed by:	silence on -current and -hackers
Prodded by:	rwatson
@
text
@d12 2
a13 2
if sysctl vfs.devfs.generation > /dev/null 2>&1 ; then
        rm -f /var/run/dev.db
d15 1
a15 1
        dev_mkdb
@

