#!/usr/bin/sh
####### 
#*********************************************************************************************************
#*   __     __               __     ______                __   __                      _______ _______   *
#*  |  |--.|  |.---.-..----.|  |--.|   __ \.---.-..-----.|  |_|  |--..-----..----.    |       |     __|  *
#*  |  _  ||  ||  _  ||  __||    < |    __/|  _  ||     ||   _|     ||  -__||   _|    |   -   |__     |  *
#*  |_____||__||___._||____||__|__||___|   |___._||__|__||____|__|__||_____||__|      |_______|_______|  *
# http://www.blackpantheros.eu|http://www.blackpanther.hu - kbarcza[]blackpanther.hu * Charles K. Barcza *
#*************************************************************************************(c)2002-2019********
#
# blackPanther OS (www.blackpantheros.eu) 
# Description: Launch blackPanther OS Configuration for the first time.
# (c)  Chmouel Boudjnah <chmouel@bad-domain>
# 	$Id$	

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

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

# Finish
rm -f /var/lock/TMP_1ST
