Chameleon

Chameleon Svn Source Tree

Root/branches/blackosx/package/Scripts/Install/InstallLog.sh

  • Property svn:executable set to *
1#!/bin/bash
2
3echo "==============================================="
4echo "InstallLog: Create/Append installation log"
5echo "**********************************************"
6
7# Creates text file named 'Chameleon_Installer_Log.txt'
8# at the root of the target volume. This is to help show the
9# user why the installation process failed (even though the
10# package installer ends reading 'Installation Successful'.
11
12# Receives two parameters
13# $1 = selected volume for location of the install log
14# $2 = text to write to the installer log
15
16if [ "$#" -eq 2 ]; then
17logLocation="$1"
18verboseText="$2"
19echo "DEBUG: passed argument = $logLocation"
20echo "DEBUG: passed argument = $verboseText"
21else
22echo "Error - wrong number of values passed"
23exit 9
24fi
25
26logName="Chameleon_Installer_Log.txt"
27logFile="${logLocation}"/$logName
28
29# On first run, create a file named .ChameleonLogFlag at
30# the root of the target volume. Then check for this file
31# on subsequent runs to know the initialisation sequence
32# has been done.
33
34if [ ! -f "${logLocation}"/.ChameleonLogFlag ]; then
35# This is the first run, so setup
36# Chameleon_Installer_Log.txt file
37# by writing header.
38
39echo "Chameleon installer log - "$( date ) >"${logFile}"
40echo "------------------------------------------------------" >>"${logFile}"
41diskutil list >>"${logFile}"
42echo "------------------------------------------------------" >>"${logFile}"
43
44# Write first message that this script was called with.
45echo "${verboseText}" >> "${logFile}"
46
47# Create /.ChameleonLogFlag file.
48echo "Log" >"${logLocation}"/.ChameleonLogFlag
49else
50# Append messages to the log as passed by other scripts.
51echo "${verboseText}" >> "${logFile}"
52fi
53
54exit 0

Archive Download this file

Revision: 1559