source: MondoRescue/branches/2.2.7/mindi/rootfs/sbin/install-additional-tools@ 1989

Last change on this file since 1989 was 1989, checked in by Bruno Cornec, 16 years ago
  • Rwmove ChopUpAndCopyFile in mindi
  • mindi doesn't use slices anymore (no need as no floppy anymore)
  • Removal of sone useless scripts under restore-scripts/mondo
  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1#!/bin/sh
2#
3# $Id: install-additional-tools 1989 2008-06-22 20:17:59Z bruno $
4#
5########################################################################
6
7
8Die() {
9 echo "Fatal error! $1" >> /dev/stderr
10 exit 1
11}
12
13
14
15# ------------ main -----------
16
17# if the file '/tmp/CDROM-LIVES-HERE' exists then we should use the CD
18
19LogIt "Starting install-additional-tools"
20mountdir=$GROOVY
21# Should be the same as in mindi => conf param
22mkdir -p $mountdir
23res=0
24if [ -e "/tmp/TAPEDEV-HAS-DATA-DISKS" ] ; then
25 LogIt "I am assuming the data disks' contents are already in $mountdir."
26else
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 $mountpoint
49 sleep 1
50fi
51
52LogIt "Populating / with tar file content..." 1
53
54cd $mountdir
55if [ -f etc/fstab ]; then
56 cp etc/fstab /tmp
57fi
58if [ -f etc/raidtab ]; then
59 cp etc/raidtab /tmp
60fi
61
62liste=`ls`
63if [ "$liste" ]; then
64 tar cf - $liste | (cd / ; tar xf -)
65 rm -fr $liste
66fi
67cd /
68
69sync;sync;sync
70
71LogIt "Done." 1
72
73which gawk 2> /dev/null > /dev/null
74[ "$?" -ne "0" ] && which awk 2> /dev/null > /dev/null && ln -sf `which awk` /usr/bin/gawk
75
76LogIt "Exiting install-additional-tools"
77exit 0
78
79# exit $res
80
Note: See TracBrowser for help on using the repository browser.