| 1 | #!/bin/sh
|
|---|
| 2 | #
|
|---|
| 3 | # $Id: install-additional-tools 3697 2018-01-07 13:52:31Z bruno $
|
|---|
| 4 | #
|
|---|
| 5 | ########################################################################
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 | # ------------ main -----------
|
|---|
| 9 |
|
|---|
| 10 | # if the file '/tmp/CDROM-LIVES-HERE' exists then we should use the CD
|
|---|
| 11 |
|
|---|
| 12 | LogIt "Starting install-additional-tools"
|
|---|
| 13 |
|
|---|
| 14 | mountdir=$EXTRACTDIR
|
|---|
| 15 |
|
|---|
| 16 | if [ $mountdir = "/" ]; then
|
|---|
| 17 | LogIt "mountdir shouldn't be /"
|
|---|
| 18 | exit 1
|
|---|
| 19 | fi
|
|---|
| 20 |
|
|---|
| 21 | # Should be the same as in mindi => conf param
|
|---|
| 22 | mkdir -p $mountdir
|
|---|
| 23 | res=0
|
|---|
| 24 | if [ -e "/tmp/TAPEDEV-HAS-DATA-DISKS" ] ; then
|
|---|
| 25 | LogIt "I am assuming the data disks' contents are already in $mountdir."
|
|---|
| 26 | else
|
|---|
| 27 | LogIt "PLEASE WAIT. Untarring data content" 2
|
|---|
| 28 |
|
|---|
| 29 | mountpoint=/dev/null
|
|---|
| 30 | [ -e "/tmp/CDROM-LIVES-HERE" ] && mountpoint=/mnt/cdrom/images
|
|---|
| 31 | tarball=$mountpoint/all.tar.gz
|
|---|
| 32 | if [ -e "/tmp/CDROM-LIVES-HERE" ] ; then
|
|---|
| 33 | [ -e "$tarball" ] || LogIt "Can't find CD's $tarball" 1
|
|---|
| 34 | fi
|
|---|
| 35 |
|
|---|
| 36 | old_pwd=`pwd`
|
|---|
| 37 | cd $mountdir
|
|---|
| 38 | counter=0
|
|---|
| 39 | for fname in `tar -zxvf $tarball` ; do
|
|---|
| 40 | counter=$(($counter+1))
|
|---|
| 41 | [ "$(($counter % 4))" -eq "0" ] && echo -en "\r\t\t\t\t\t\t\t\\"
|
|---|
| 42 | [ "$(($counter % 4))" -eq "1" ] && echo -en "\r\t\t\t\t\t\t\t|"
|
|---|
| 43 | [ "$(($counter % 4))" -eq "2" ] && echo -en "\r\t\t\t\t\t\t\t/"
|
|---|
| 44 | [ "$(($counter % 4))" -eq "3" ] && echo -en "\r\t\t\t\t\t\t\t-"
|
|---|
| 45 | done
|
|---|
| 46 | cd $old_pwd
|
|---|
| 47 | echo -e -n "\r"
|
|---|
| 48 | [ ! -e "/tmp/CDROM-LIVES-HERE" ] && umount -d $mountpoint
|
|---|
| 49 | sleep 1
|
|---|
| 50 | fi
|
|---|
| 51 |
|
|---|
| 52 | LogIt "Populating / with tar file content..." 1
|
|---|
| 53 |
|
|---|
| 54 | cd $mountdir
|
|---|
| 55 | if [ -f etc/fstab ]; then
|
|---|
| 56 | cp etc/fstab /tmp
|
|---|
| 57 | fi
|
|---|
| 58 | if [ -f etc/raidtab ]; then
|
|---|
| 59 | cp etc/raidtab /tmp
|
|---|
| 60 | fi
|
|---|
| 61 |
|
|---|
| 62 | liste=`ls`
|
|---|
| 63 | if [ "$liste" ]; then
|
|---|
| 64 | LogIt "Installing and removing $liste"
|
|---|
| 65 | tar cf - $liste | (cd / ; tar xf -)
|
|---|
| 66 | rm -fr $liste
|
|---|
| 67 | fi
|
|---|
| 68 | cd /
|
|---|
| 69 |
|
|---|
| 70 | sync;sync;sync
|
|---|
| 71 |
|
|---|
| 72 | LogIt "Done." 1
|
|---|
| 73 |
|
|---|
| 74 | which gawk 2> /dev/null > /dev/null
|
|---|
| 75 | [ "$?" -ne "0" ] && which awk 2> /dev/null > /dev/null && ln -sf `which awk` /usr/bin/gawk
|
|---|
| 76 |
|
|---|
| 77 | LogIt "Exiting install-additional-tools"
|
|---|
| 78 | exit 0
|
|---|