source: MondoRescue/branches/3.3/mindi/rootfs/usr/sbin/install-additional-tools

Last change on this file was 3785, checked in by Bruno Cornec, 3 years ago

Fix #874 - improved byeboard support for opensuse 15.2 from Frank Schütte F.Schuette_at_t-online.de

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1#!/bin/sh
2#
3# $Id: install-additional-tools 3785 2021-04-02 16:56:38Z bruno $
4#
5########################################################################
6
7
8# ------------ main -----------
9
10# if the file '/tmp/CDROM-LIVES-HERE' exists then we should use the CD
11
12LogIt "Starting install-additional-tools"
13
14mountdir=$EXTRACTDIR
15
16if [ $mountdir = "/" ]; then
17 LogIt "mountdir shouldn't be /"
18 exit 1
19fi
20
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 -d $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
57else
58 LogIt "No fstab found under $mountdir"
59fi
60if [ -f etc/raidtab ]; then
61 cp etc/raidtab /tmp
62fi
63
64liste=`ls`
65if [ "$liste" ]; then
66 LogIt "Installing and removing $liste"
67 tar cf - $liste | (cd / ; tar xf -)
68 rm -fr $liste
69fi
70cd /
71
72sync;sync;sync
73
74LogIt "Done." 1
75
76which gawk 2> /dev/null > /dev/null
77[ "$?" -ne "0" ] && which awk 2> /dev/null > /dev/null && ln -sf `which awk` /usr/bin/gawk
78
79LogIt "Exiting install-additional-tools"
80exit 0
Note: See TracBrowser for help on using the repository browser.