diff options
Diffstat (limited to 'init.d/devdb.in')
-rw-r--r-- | init.d/devdb.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/init.d/devdb.in b/init.d/devdb.in new file mode 100644 index 00000000..a87dbdee --- /dev/null +++ b/init.d/devdb.in @@ -0,0 +1,21 @@ +#!@PREFIX@/sbin/runscript +# Copyright 2008 Roy Marples <roy@marples.name> +# All rights reserved. Released under the 2-clause BSD license. + +description="Creates the dev database" + +depend() +{ + need localmount +} + +start() +{ + ebegin "Bulding the dev database" + if [ /var/run/dev.db -nt /dev ]; then + : + else + dev_mkdb + fi + eend $? +} |