Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 5636aec23239d3a7d371201f584e6384 > files > 35

initscripts-7.06-11mdk.ppc.rpm

#!/bin/sh
# Description: Launch Mandrake Configuration for the first time.
# (c) MandrakeSoft, Chmouel Boudjnah <chmouel@mandrakesoft.com>
# 	$Id: mandrake_firstime,v 1.12 2002/09/04 14:23:45 flepied Exp $	

FLO=/var/log/first_boot_log
touch $FLO

. /etc/rc.d/init.d/functions

# If fail erase the temporary file
trap 'rm -f /var/lock/TMP_1ST' 1 2 3 15

#Rebuild Mozilla registry
# be sure that mozilla registry is ok
MOZ_REBUILD_DATABASE="/usr/lib/mozilla-*/mozilla-rebuild-databases.pl"
[ -x $MOZ_REBUILD_DATABASE ] &&
{
 action "Building Mozilla registry" $MOZ_REBUILD_DATABASE 2>> $FLO
}

#
[ -s $FLO ] || rm -f $FLO

# Finish
rm -f /var/lock/TMP_1ST