source: MondoRescue/branches/3.2/mindi/mindi@ 3489

Last change on this file since 3489 was 3489, checked in by Bruno Cornec, 8 years ago

On Debian 8 we need to use /lib/systemd instead of /usr/lib/systemd

  • Property svn:executable set to *
  • Property svn:keywords set to Rev Id
File size: 123.0 KB
RevLine 
[747]1#!/bin/bash
2
3# $Id: mindi 3489 2015-12-04 00:32:09Z bruno $
4#
5#-----------------------------------------------------------------------------
6# mindi - mini-Linux distro based on the user's filesystem & distribution
7#
[1880]8# Mindi can create a multi-image boot/root kit. The first image is the boot
[747]9# disk: it contains a kernel, a ramdisk etc. The second disk is data disk #1;
10# the third disk is data disk #2; and so it goes.
11#
12# See http://www.mondorescue.org for details.
13#-----------------------------------------------------------------------------
14
15### Which arch are we on (useful for ia64 port)
[1565]16ARCH=`/bin/uname -m`
[2292]17KERVERRUN=`/bin/uname -r`
18# By default we use the running kernel as a reference
19KERVER=$KERVERRUN
[747]20
[2442]21# In case of problem with udev you can try to add udevdebug
[2564]22MINDI_ADDITIONAL_BOOT_PARAMS="devfs=nomount noresume selinux=0 barrier=off udevtimeout=10"
[3053]23MINDI_DEFAULT_BOOT_OPTION="interactive"
24# For a CD Recovery use 10000 instead rather. Beware till Hardcoded below. Planned to be changed on the perl version
25# So this parameter only applies to non CD recovery.
26MINDI_BOOT_TIMEOUT="300"
[747]27
[1691]28MINDI_REV=PBREV
29MINDI_VER=PBVER
[747]30
31MINDI_VERSION=${MINDI_VER}-r$MINDI_REV
32MINDI_PREFIX=XXX
33MINDI_CONF=YYY
34MINDI_SBIN=${MINDI_PREFIX}/sbin
[934]35MINDI_LIB=LLL
[3149]36MINDI_CACHE=/var/cache/mindi
[747]37
[3278]38MRCFG=mondorestore.cfg
39
[925]40# Temporary directory for mindi
41TMPDIR=/tmp
42
[3033]43EXTRA_SPACE=120000 # increase if you run out of ramdisk space
[3480]44BOOT_SIZE=86000 # size of the boot disk in KB
[747]45
46PROMPT_MAKE_CD_IMAGE="yes"
47 # Ask if you want to make a CD Image to be written?
48 # if this is set to 'no', then the image will be created automatically
49
[1684]50PROMPT_MAKE_USB_IMAGE="yes"
51 # Ask if you want to make a USB Image to be written?
52 # if this is set to 'no', then the image will be created automatically
53
[966]54USE_OWN_KERNEL="yes"
[747]55 # If set to "no", you will be prompted for whether or not
56 # you want to use your own kernel, or the supplied default.
57 # If "yes" mindi will automatically use your own kernel.
[925]58
[2629]59KERNEL_IS_XEN="no"
60 # If set to "no", the kernel is not a Xen kernel
61 # If "yes", mindi will modify isolinux.cfg for the Xen kernel.
[2880]62xenkernelpath=""
[2629]63
[747]64MY_FSTAB=/etc/fstab
65TAPE_MODS="ht st osst ide-tape ide_tape"
[3470]66SCSI_MODS="3w-xxxx 3w_xxxx 3w_9xxx 3w-9xxx 53c7,8xx a100u2w a320raid aacraid adpahci advansys aha152x aha1542 aha1740 aic79xx aic79xx_mod aic7xxx aic7xxx_mod aic7xxx_old AM53C974 atp870u BusLogic cciss cpqfc hpsa hpvsa dmx3191d dpt_i2o dtc eata eata_dma eata_pio fdomain gdth g_NCR5380 i2o_block ide-scsi ieee1394 imm in2000 initio ips iscsi be2iscsi cxgb3i cxgb3 cxgb4i cxgb4 uio isp megaraid megaraid_mbox megaraid_sas mega_sr mptscsih mptsas mpt2sas mpt3sas mptspi mptfc mptscsi mptctl NCR53c406a ncr53c8xx nsp32 pas16 pci2000 pci2220i pcmcia ppa psi240i qla1280 qla2200 qla2300 qla2400 qla2xxx qlogicfas qlogicfc qlogicisp qlogicfas qlogicfas408 raw1394 scsi_mod sd_mod seagate sg sim710 sr_mod sym53c416 sym53c8xx sym53c8xx_2 t128 tmscsim u14-34f ultrastor wd7000 vmhgfs intermodule emcpdm emcpgpx emcpmpx emcp dc395x diskdumplib arcmsr virtio_scsi vmw_pvscsi"
[747]67
68# ide-probe-mod
[3463]69IDE_MODS="ide ide-floppy floppy ide-generic ide-detect ide-mod ide-disk ide_disk ide-cd ide_cd ide_cd_mod ide-cd_mod ide-cs edd paride ata_generic ata_piix dock via82cxxx generic nvidia ahci sata_nv cmd64x pata_via pata_amd pata_marvell pata_serverworks pata_sis pata_sil680 pata_jmicron pata_atiixp pata_acpi amd74xx sis5513 jmicron sata_promise sata_via serverworks sata_svw virtio virtio_blk virtio_pci hv_storvsc"
[747]70PCMCIA_MODS="pcmcia_core ds yenta_socket"
[3474]71USB_MODS="usb-storage usb_storage usb-ohci usb-uhci input hid hid_generic hid-generic uhci_hcd uhci-hcd ehci-hcd ehci-pci ohci-hcd ohci_hcd ohci-pci xhci xhci-hcd usbkbd usbhid keybdev mousedev scsi_mod ff-memless ums_cypress ums-cypress cp210x usbserial"
[3446]72NET_MODS="nfs nfsv2 nfsv3 nfsv4 nfsd loop mii 3c59x e100 bcm5700 cnic be2net bnx2 bnx2x bnx2i mdio e1000 e1000e igb dca eepro100 ne2k-pci tg3 pcnet32 8139cp 8139too 8390 enic forcedeth vmxnet vmxnet3 vmnet exportfs fuse netbk xenblktap r8169 virtio_net via_rhine ipv6 ptp rpcsec_gss_krb5"
[3357]73CDROM_MODS="$TAPE_MODS $IDE_MODS $USB_MODS $PCMCIA_MODS $SCSI_MODS $NET_MODS cdrom isocd isofs sg sr_mod iso9660 nls_iso8859-1 vfat fat loop md-mod lvm-mod dm-mod dm_mod dm-multipath dm-emc dm-hp-sw dm-rdac dm-region-hash multipath jfs xfs btrfs reiserfs ext2 ext3 minix nfs nfsd ext4 ocfs2 configfs vxfs nls_utf8"
[1230]74# Replace with that line for HP OCMP e.g.
[2073]75#DENY_MODS="MPS_Driver_Mapper mps octtldrv tscttl streams kqemu fdomain"
[3055]76DENY_MODS="kqemu vxfen"
[1399]77# Force some modules to be included
[1354]78FORCE_MODS=""
[925]79
[747]80LOGFILE=/var/log/mindi.log
81BOOT_MEDIA_MESSAGE="\
[3173]82To format and restore all files automatically, type '0enuke07' <enter>.\n\
83To restore some/all files interactively, type '0einteractive07' <enter>.\n\
84To compare the archives with your filesystem, type '0ecompare07' <enter>.\n\
85To boot to a command-line prompt (expert mode), type '0eexpert07' <enter>.\n\
86\n\
87You may add one or more parameters as well as per the function keys below\n\
88e.g. Type '0enuke denymods=\"fdomain impi_si\"07' to not load these 2 modules\n\
89\n\
90If restoring from a local external disk or USB key, do not connect it \n\
91until the boot-up has finished.\n\
92\n\
93\n0eF107-Main | Boot Parameters 0eF207-1/2 | 0eF307-2/2 | 0eF407-PXE\n\
[747]94"
[3377]95FDISK=$MINDI_SBIN/mr-parted2fdisk
[747]96
[925]97# Using a config file allow to overwrite some values
98MINDI_CONFIG="$MINDI_CONF/mindi.conf"
99if [ -f $MINDI_CONFIG ]; then
100 . $MINDI_CONFIG
101fi
[1885]102DEPLIST_FILE="$MINDI_CONF/deplist.txt"
[2409]103DEPLIST_DIR="$MINDI_CONF/deplist.d"
104
[1885]105ISO_CMD="/usr/bin/mkisofs"
106ISO_OPT="-J -r -v -p Mindi -publisher http://www.mondorescue.org -A Mindi"
[925]107
[3421]108# Mindi set this as default in case it's invoked alone
109BOOT_TYPE="BIOS"
110# and we also check whether we're UEFI or not.
111if [ -d "/sys/firmware/efi" ]; then
112 BOOT_TYPE="UEFI"
[3482]113 ISO_OPT="$ISO_OPT -eltorito-alt-boot -efi-boot images/mindi-bootroot.img -no-emul-boot"
[3429]114else
115 # Find MBR in case of bootable USB device to build
116 MBRFILE=/usr/lib/syslinux/mbr.bin
117 [ ! -r "$MBRFILE" ] && MBRFILE=/usr/lib64/syslinux/mbr.bin
118 [ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/syslinux/mbr.bin
119 [ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/lib/syslinux/mbr.bin
120 [ ! -r "$MBRFILE" ] && MBRFILE=/usr/share/lib64/syslinux/mbr.bin
[3421]121fi
[3403]122
[2457]123# Mandriva system e.g. use cdrkit, which uses genisoimage instead of mkisofs.
124# However, they use exactly the same command line parameters, so just
125# use genisoimage if it's available.
126if [ ! -x $ISO_CMD ]; then
127 ISO_CMD=/usr/bin/genisoimage
128fi
129
[2685]130
[2880]131# Function to log on screen only
132LogScreen() {
[3368]133 if [ -e /dev/stderr ] ; then
134 echo -e "$1" >> /dev/stderr
135 elif [ -e /usr/bin/logger ] ; then
136 /usr/bin/logger -s $1
137 fi
[2880]138}
[2685]139
[2880]140# Function to log in log file only
141LogFile() {
142
[3368]143 echo -e "$1" >> $LOGFILE
144 if [ _"$2" != _"" ]; then
[3403]145 grep -Ev "tar: Removing [a-z ]*\`/\'" "$2" >> $LOGFILE
[3432]146 rm -f "$2"
[3368]147 fi
[2880]148}
149
150# Function to log in both screen and logfile
151LogAll() {
[3368]152 LogScreen "$1"
153 LogFile "$1" "$2"
[2880]154}
155
156# Preserved for compatibility
157LogIt() {
158 LogAll "$1" "$2"
159}
160
[2963]161# Last function called before exiting
162# Parameter is exit code value
163# Should be declared here as used immediately below potentialy
164MindiExit() {
[3149]165 LogFile "Mindi $MINDI_VERSION is exiting"
166 LogFile "End date : `date`"
[2963]167 if [ _"$MONDO_SHARE" != _"" ] ; then
168 echo "------------- mindi logfile included -------------------------" >> /var/log/mondoarchive.log
[2995]169 if [ -f $LOGFILE ]; then
170 cat $LOGFILE >> /var/log/mondoarchive.log
171 else
172 echo "No LOGFILE available in that mindi run" >> /var/log/mondoarchive.log
173 fi
[2963]174 echo "--------------------------------------------------------------">> /var/log/mondoarchive.log
175 fi
[2880]176
[2963]177 cd /
178 sync&
179
180 # Clean temporary files only when standalone mindi
181 if [ _"$MINDI_TMP" != _"$MONDO_TMP" ]; then
182 rm -Rf $MINDI_TMP
183 fi
184 exit $1
185}
186
[2685]187Die() {
188 local i
189 if [ "$1" = "" ] ; then
[3149]190 LogAll "FATAL ERROR"
[2685]191 else
[3149]192 LogAll "FATAL ERROR. $1"
[2685]193 fi
194 if [ _"$2" != _"" ]; then
[3403]195 grep -Ev "tar: Removing [a-z ]*\`/\'" "$2" >> $LOGFILE
[2685]196 fi
197 rm -f "$2"
198
[3149]199 LogAll "Please e-mail a copy of $LOGFILE to the mailing list."
200 LogAll "See http://www.mondorescue.org for more information."
201 LogAll "WE CANNOT HELP unless you enclose that file.\n"
[2685]202 MindiExit -1
203}
204
[1485]205# Now we can create what we need
[2150]206MINDI_TMP=`mktemp -d $TMPDIR/mindi.XXXXXXXXXX`
207if [ $? -ne 0 ]; then
208 df $TMPDIR
209 Die "Unable to create a temporary directory ! Check space on $TMPDIR"
210fi
[2153]211if [ _"$MINDI_TMP" = _"" ]; then
212 Die "MINDI_TMP is empty, aborting"
213fi
214if [ _"$MINDI_TMP" = _"/" ]; then
215 Die "MINDI_TMP is /, aborting"
216fi
[2150]217export MINDI_TMP
[940]218
[747]219# ----------------------------------------------------------------------------
220
221
222AbortHere() {
223 [ "$mountpoint" ] && umount $mountpoint 2>> $LOGFILE
224 Die "Program is terminating in response to signal received from OS/user"
225}
226
227
228Aborted() {
229 trap SIGHUP SIGTERM SIGTRAP SIGINT
[1880]230 [ "$MINDI_CACHE" != "" ] && rm -f $MINDI_CACHE/mindi*img $MINDI_CACHE/*gz $MINDI_CACHE/mindi.iso
[747]231 Die "User abort."
232}
233
234
235AddFileToCfgIfExists() {
236 [ -e "$1" ] && echo -en "$2 `cat $1`\n" >> $3
237}
238
239
240AddKeyboardMappingFile() {
241 local mappath r included_list included_item i res ii sss
242 mappath=$1
243 KBDEPTH=$(($KBDEPTH+1))
244 [ "$KBDEPTH" -gt "128" ] && Die "Edit $MINDI_SBIN/mindi and disable FindAndAddUserKeyboardMappingFile (line 2160, approx.)"
245 if [ -e "$bigdir/$mappath" ] ; then
[3149]246 LogFile "INFO: $mappath already added"
[747]247 return
248 elif [ -d "$bigdir/$mappath" ] ; then
249 echo "Cannot add $mappath: it's a directory. Sorry."
250 return
251 fi
[3149]252 LogFile "INFO: Added kbd map $mappath"
[747]253 if [ ! -e "$mappath" ] ; then
[3149]254 mappath=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
[747]255 if [ ! -e "$mappath" ] ; then
[3149]256 LogAll "WARNING: Cannot add $mappath: kbd map file not found"
[747]257 return
258 fi
259 else
[3364]260 echo -en "`basename $mappath | tr '.' '#' | sed 's/#kmap#gz//' | sed 's/#inc#gz//'` " | tr '#' '.'
[747]261 fi
262
[3149]263 tar cf - -C / $mappath 2>> $MINDI_TMP/$$.log | (cd "$bigdir" ; tar xf -) || LogAll "WARNING: AKMF -- Could not copy $mappath to $bigdir" $MINDI_TMP/$$.log
[747]264 if [ "`echo $mappath | grep -F ".gz"`" ] ; then
[3023]265 included_list=`gzip -dc $mappath | grep -Fi include | sed s/'"'//g | cut -d' ' -f2`
[747]266 else
[3023]267 included_list=`grep -Fi include $mappath | sed s/'"'//g | cut -d' ' -f2`
[747]268 fi
269 for included_item in $included_list ; do
[925]270 if [ ! -e "$included_item" ] ; then
[3149]271 sss=`grep -F "${included_item}.inc" $MINDI_TMP/keymaps.find`
[1764]272 [ "$sss" = "" ] && sss=`grep -F "$included_item" $MINDI_TMP/keymaps.find`
[925]273 for ii in $sss ; do
[747]274 [ -e "$ii" ] && AddKeyboardMappingFile $ii
[925]275 done
276 else
277 AddKeyboardMappingFile $included_item
278 fi
[747]279 done
280}
281
282
283CopyDependenciesToDirectory() {
[3403]284 local outdir incoming counter d found tdir templog
[747]285 outdir=$1
[3403]286 templog=$MINDI_TMP/$$.log
[747]287 mkdir -p $outdir
288 incoming=`ReadLine`
289 counter=0
[3403]290 > $templog
291
[747]292 while [ "$incoming" != "" ] ; do
[1526]293 # Non absolute file names should not arrive till here => skipped
294 if [ `echo "$incoming" | cut -c1` != '/' ]; then
[3149]295 LogAll "WARNING: Unable to handle $incoming"
[1526]296 incoming=`ReadLine`
297 continue
298 fi
299 # no parent directory of incoming should be a link, copy is not possible in that case
300 d=`dirname "$incoming"`
301 found="false"
302 while [ $d != "/" -a $found = "false" ]; do
303 [ -h "$d" ] && found="true"
304 d=`dirname "$d"`
305 done
[3166]306 if [ -d "$incoming" -a ! -h "$incoming" ]; then
[3149]307 find $incoming/* -maxdepth 0 2> /dev/null | CopyDependenciesToDirectory $outdir 0
[1526]308 elif [ -e "$incoming" ] && [ $found = "false" ]; then
[3075]309 if [ ! -h "$incoming" ]; then
[3405]310 tar cf - -C / $incoming 2> $templog | (cd "$outdir" ; tar xf -) || Die "Cannot copy $incoming to $outdir - did you run out of disk space?" $templog
[3075]311 else
312 tdir=`dirname "$incoming"`
313 if [ ! -e "$outdir/$tdir" ]; then
314 mkdir -p "$outdir/$tdir"
315 fi
316 cp --no-dereference --preserve=all $incoming "$outdir/$tdir"
317 fi
[1989]318 # Only uncompress modules if not using udevd
319 if [ "`echo "$incoming" | grep "lib/modules/.*\..*o\.gz"`" != "" ] && [ "`ps auxww | grep -v grep | grep -qw udevd`" != "" ]; then
[3149]320 gunzip -f $outdir/$incoming || LogAll "WARNING: Cannot gunzip $outdir/$incoming"
[925]321 fi
[3075]322 [ -x "$outdir" ] && StripExecutable $outdir
[925]323 counter=$(($counter+1))
[3149]324 LogProgress $counter $2
[747]325 fi
326 incoming=`ReadLine`
327 done
328}
329
330
331CountItemsIn() {
332 local r
333 r=0
334 for q in $1 ; do
335 r=$(($r+1))
336 done
337 echo $r
338}
339
340
341DropOptimizedLibraries() {
342 local outdir filelist list_of_optimized_libraries optimized_lib_name vanilla_lib_name reason msg resolved res
343 filelist=$1
344 outdir=$2
345
346 list_of_optimized_libraries=`grep "lib/i[5-7]86/" $filelist`
347 if [ "$list_of_optimized_libraries" = "" ] ; then
[859]348 return 0
[747]349 fi
350 echo -en "Dropping i686-optimized libraries if appropriate"
351 for optimized_lib_name in $list_of_optimized_libraries ; do
[859]352 echo -en "."
353 reason=""
[1483]354 vanilla_lib_name=`echo "$optimized_lib_name" | sed -e 's/i[5-7]86//' -e 's/cmov//' -e 's/nosegneg//' | tr -s '/' '/'`
[859]355 echo "$vanilla_lib_name" >> $filelist
[2963]356 LogFile "INFO: Adding $vanilla_lib_name to filelist"
[859]357 mkdir -p $outdir$optimized_lib_name > /dev/null 2> /dev/null
358 rmdir $outdir$optimized_lib_name > /dev/null 2> /dev/null
[2168]359
360 # This may return multiple files
[3231]361 for resolved in `mr-read-all-link $vanilla_lib_name`; do
[2963]362 LogFile "INFO: Adding as deps $resolved to filelist"
[2168]363 vanilla_resolved_name=`echo "$resolved" | sed -e 's/i[5-7]86//' -e 's/cmov//' -e 's/nosegneg//' | tr -s '/' '/'`
[3149]364 if [ "$vanilla_resolved_name" != "$resolved" ]; then
365 mkdir -p $outdir$resolved> /dev/null 2> /dev/null
366 rmdir $outdir$resolved > /dev/null 2> /dev/null
367 ln -sf $vanilla_resolved_name $outdir$resolved
368 LogFile "INFO: Excluding deps $resolved"
369 grep -Fvx "$resolved" "$filelist" > $filelist.tmp
370 LogFile "INFO: Replacing it with $vanilla_resolved_name"
371 echo "$vanilla_resolved_name" >> $filelist.tmp
372 mv -f $filelist.tmp $filelist
373 fi
[2168]374 done
[747]375 done
[925]376 $AWK '{ print $1; }' $filelist | sort -u > $filelist.tmp
[747]377 mv -f $filelist.tmp $filelist
378 echo -e "$DONE"
379}
380
381
382FindAndAddUserKeyboardMappingFile() {
383 local r res mapfile mappath included_item included_list keyfile mp locale
[3149]384 LogAll "INFO: Analyzing your keyboard's configuration."
[3231]385 KEYDIR=/usr/lib/kbd
[747]386 [ ! -e "$KEYDIR" ] && KEYDIR=/usr/share/kbd # Slackware
[3347]387 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/console
388 [ ! -e "$KEYDIR" ] && KEYDIR=/etc/console-setup
[3231]389 [ ! -e "$KEYDIR" ] && KEYDIR=/lib/kbd
[747]390 if [ ! -e "$KEYDIR" ] ; then
[3149]391 LogAll "WARNING: Keyboard mapping directory not found. I shall use default map at boot-time."
[747]392 return 0
393 fi
394 if [ -e "/etc/sysconfig/keyboard" ] ; then
[2963]395 LogFile "INFO: Red Hat-style config detected."
[747]396 keyfile=/etc/sysconfig/keyboard
[3257]397 elif [ -e "/etc/vconsole.conf" ] ; then
398 LogFile "INFO: New Fedora style config detected."
399 keyfile=/etc/vconsole.conf
[747]400 elif [ -e "/etc/rc.d/rc.keymap" ] ; then
[2963]401 LogFile "INFO: Slackware-style config detected."
[747]402 keyfile=/etc/rc.d/rc.keymap
403 elif [ -e "/etc/rc.config" ] ; then
[2963]404 LogFile "INFO: Debian-style config detected."
[747]405 keyfile=/etc/rc.config
406 elif [ -e "/etc/console/boottime.kmap.gz" ] ; then
[2963]407 LogFile "INFO: Debian-style config detected."
[747]408 mkdir -p $bigdir/tmp
[3278]409 echo "keymap-lives-here /etc/console/boottime.kmap.gz" >> $bigdir/tmp/$MRCFG
[747]410 KBDEPTH=0
411 mkdir -p $bigdir/etc/console
[963]412 cp /etc/console/boottime.kmap.gz $bigdir/etc/console 2>> $LOGFILE
[2864]413 echo ""
[747]414 echo -e "$DONE"
415 return 0
[2828]416 elif [ -e "/etc/console-setup/boottime.kmap.gz" ] || [ -e "/etc/console-setup/cached.kmap.gz" ] ; then
[2963]417 LogFile "INFO: Ubuntu-style config detected."
[1713]418 mkdir -p $bigdir/tmp
[2828]419 if [ -e "/etc/console-setup/boottime.kmap.gz" ] ; then
420 kbdfile="/etc/console-setup/boottime.kmap.gz"
421 else
422 kbdfile="/etc/console-setup/cached.kmap.gz"
423 fi
[3278]424 echo "keymap-lives-here $kbdfile" >> $bigdir/tmp/$MRCFG
[1713]425 KBDEPTH=0
426 mkdir -p $bigdir/etc/console-setup
[2828]427 cp $kbdfile $bigdir/etc/console-setup 2>> $LOGFILE
[2864]428 echo ""
[1713]429 echo -e "$DONE"
430 return 0
[2744]431 elif [ -e "/etc/rc.conf" ] ; then
[2963]432 LogFile "INFO: ArchLinux config detected."
[2744]433 keyfile=/etc/rc.conf
[1465]434 elif [ -e "/etc/conf.d/keymaps" ] ; then
[2963]435 LogFile "INFO: Gentoo-style config detected."
[1465]436 keyfile=/etc/conf.d/keymaps
[3191]437 elif [ -e "/etc/X11/xorg.conf.d/00-keyboard.conf" ] ; then
438 LogFile "INFO: X11-style config detected."
439 keyfile=/etc/X11/xorg.conf.d/00-keyboard.conf
[747]440 else
[3149]441 LogFile "Searching for rc.config ..."
[747]442 keyfile=`find /etc -name rc.config | head -n1`
443 if [ "$keyfile" = "" ] || [ ! -e "$keyfile" ] ; then
[3149]444 LogAll "WARNING: Unknown config detected. Default keyboard map will be used."
[747]445 return
446 else
[2963]447 LogFile "INFO: Found $keyfile"
[747]448 fi
449 fi
450 if [ ! -e "$KEYDIR/keymaps" ] ; then
[3149]451 LogAll "WARNING: Keyboard mapping directory not found. Default keyboard map will be used."
[747]452 return
453 fi
[2963]454 LogFile "INFO: keyfile=$keyfile"
[2999]455 # For SLES we need to remove the .map.gz extension Cf #614
456 locale=`grep -F KEYTABLE "$keyfile" | grep -v '^#' | tr -d '"' |cut -d'=' -f2 | sed 's/.map.gz$//'`
[747]457 [ ! "$locale" ] && locale=`grep '.map$' "$keyfile" | sed 's/^.* //'` # Slackware
[3257]458 [ ! "$locale" ] && locale=`grep -E '^KEYMAP=' "$keyfile" | grep -v '^#' | tr -d '"' |cut -d'=' -f2` # Gentoo, ArchLinux & New fedora
[3191]459 [ ! "$locale" ] && locale=`grep -E 'XkbLayout' "$keyfile" | grep -v '^#' | awk '{print $3}' | tr -d '"'` # Fedora 19
[2963]460 LogFile "INFO: locale=$locale"
[1764]461 #
462 # Process the keymaps dir once for all
463 # AddKeyboardMappingFile will use it recursively
464 #
465 find $KEYDIR/keymaps > $MINDI_TMP/keymaps.find
466 mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep -F "/${locale}." | grep -vx " *#.*"`
467 [ ! "$mp" ] && mp=`grep "i[3-8]86" $MINDI_TMP/keymaps.find | grep "$locale[^r][^/]" | grep -vx " *#.*"`
[747]468 # If we have multiple keymaps then log it !!
[3149]469 echo "$mp" | grep -q " " >> $LOGFILE
[747]470 if [ $? -eq 0 ]; then
[2963]471 LogAll "WARNING: Multiple keymaps found: $mp"
472 LogFile "INFO: The following one will be used"
[747]473 fi
474 for i in $mp ; do
475 mappath=$i
476 [ -e "$i" ] && [ ! -d "$i" ] && break
477 done
478 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
[2958]479 mappath=$(find / -wholename "*/kbd/keymaps/*/$locale | head -1")
[747]480 fi
[2963]481 LogFile "INFO: mappath = $mappath"
[747]482 if [ ! -e "$mappath" ] || [ -d "$mappath" ] ; then
[3149]483 LogAll "WARNING: Keyboard mapping file not found. Default keyboard map will be used."
[747]484 return
485 fi
[3149]486 LogAll "INFO: Adding the following keyboard mapping tables: "
[747]487 mkdir -p $bigdir/tmp
[3278]488 echo "keymap-lives-here $mappath" >> $bigdir/tmp/$MRCFG
[2055]489 KBDEPTH=0
[747]490 AddKeyboardMappingFile $mappath
[2864]491 echo ""
[747]492 echo -e "$DONE"
[1764]493 rm -f $MINDI_TMP/keymaps.find
[747]494 return 0
495}
496
497
[3241]498FindLdlinux32Binary() {
499 LDLINUXC32=/usr/lib/syslinux/ldlinux.c32
500 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib64/syslinux/ldlinux.c32
501 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/syslinux/ldlinux.c32
502 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/lib/syslinux/ldlinux.c32
503 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/share/lib64/syslinux/ldlinux.c32
[3303]504 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib/syslinux/modules/bios/ldlinux.c32
505 [ ! -e "$LDLINUXC32" ] && LDLINUXC32=/usr/lib64/syslinux/modules/bios/ldlinux.c32
[3241]506 #[ ! -e "$LDLINUXC32" ] && LDLINUXC32=`find / -name ldlinux.c32 | grep -x "/.*/ldlinux.c32"`
507 if [ ! -e "$LDLINUXC32" ]; then
508 LogFile "INFO: If you use syslinux 5.x, you may miss ldlinux.c32. If your syslinux RPM doesn't include ldlinux.c32, you may want to download another one"
509 LDLINUXC32=/tmp/idoesnthopefullyexist
510 else
511 LogFile "INFO: Found ldlinux.c32 at $LDLINUXC32"
512 fi
513}
514
515
[2629]516FindMboot32Binary() {
517 MBOOTC32=/usr/lib/syslinux/mboot.c32
518 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib64/syslinux/mboot.c32
519 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/syslinux/mboot.c32
520 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/lib/syslinux/mboot.c32
521 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/share/lib64/syslinux/mboot.c32
[3303]522 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib/syslinux/modules/bios/mboot.c32
523 [ ! -e "$MBOOTC32" ] && MBOOTC32=/usr/lib64/syslinux/modules/bios/mboot.c32
[2629]524 [ ! -e "$MBOOTC32" ] && MBOOTC32=`find / -name mboot.c32 | grep -x "/.*/mboot.c32"`
[2921]525 [ ! -e "$MBOOTC32" ] && Die "Please install mboot.c32 first. If your syslinux RPM doesn't include mboot.c32, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
[2963]526 LogFile "INFO: Found mboot.c32 at $MBOOTC32"
[2629]527}
528
[3476]529FindLdlinuxe64Binary() {
530 LDLINUXE64=/usr/share/syslinux/efi64/ldlinux.e64
531 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=/usr/lib64/syslinux/efi64/ldlinux.e64
532 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=/usr/share/lib/syslinux/efi64/ldlinux.e64
533 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=/usr/share/lib64/syslinux/efi64/ldlinux.e64
534 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=/usr/lib/syslinux/modules/efi64/ldlinux.e64
535 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=/usr/lib64/syslinux/modules/efi64/ldlinux.e64
536 [ ! -e "$LDLINUXE64" ] && LDLINUXE64=`find / -name ldlinux.e64 | grep -x "/.*/ldlinux.e64"`
537 [ ! -e "$LDLINUXE64" ] && Die "Please install ldlinux.e64 first. If your syslinux RPM doesn't include ldlinux.e64, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
538 LogFile "INFO: Found ldlinux.e64 at $LDLINUXE64"
539}
540
541FindSyslinux64EFI() {
542 SYSLINUX64EFI=/usr/share/syslinux/efi64/syslinux.efi
543 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=/usr/lib/syslinux/efi64/syslinux.efi
544 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=/usr/lib64/syslinux/efi64/syslinux.efi
545 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=/usr/share/syslinux/syslinux.efi
546 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=/usr/share/lib64/syslinux/efi64/syslinux.efi
547 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=/usr/lib/SYSLINUX/efi64/syslinux.efi
548 [ ! -e "$SYSLINUX64EFI" ] && SYSLINUX64EFI=`find / -name syslinux.efi | grep -x "/.*64/syslinux.efi"`
549 [ ! -e "$SYSLINUX64EFI" ] && Die "Please install syslinux first. If your syslinux RPM doesn't include syslinux, you may download an syslinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
550 LogFile "INFO: Found syslinux.efi at $SYSLINUX64EFI"
551}
552
[747]553FindIsolinuxBinary() {
554 ISOLINUX=/usr/lib/isolinux.bin
555 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/syslinux/isolinux.bin
[1491]556 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib64/syslinux/isolinux.bin
[747]557 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/syslinux/isolinux.bin
558 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib/syslinux/isolinux.bin
[1491]559 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib64/syslinux/isolinux.bin
[3304]560 [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/ISOLINUX/isolinux.bin
[1854]561 [ ! -e "$ISOLINUX" ] && ISOLINUX=`find / -name isolinux.bin | grep -x "/.*/isolinux.bin"`
[2921]562 [ ! -e "$ISOLINUX" ] && Die "Please install isolinux first. If your syslinux RPM doesn't include isolinux, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.org/downloads.shtml"
[2963]563 LogFile "INFO: Found isolinux.bin at $ISOLINUX"
[747]564}
565
566
567GenerateGiantDependencyList() {
568 local incoming loc fname list_of_files i tempfile outfile progress filelist res r mapfile mappath included_list included_item old_pwd tempdepfile modres noof_lines lvmversion lvmresolved
569
570 echo -en "Analyzing dependency requirements"
571 outfile=$1
[940]572 tempfile=$MINDI_TMP/$$.txt
[747]573 incoming=`ReadLine`
574
575 > $tempfile
576 progress=0
577 res=0
578 noof_lines=$2
579 while [ "$incoming" != "" ] ; do
[861]580 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
581 incoming=`ReadLine`
582 continue
583 fi
584 if [ "$incoming" = "LVMFILES:" ] ; then
585 break
586 fi
[747]587 filelist=`GenerateListForFile "$incoming"`
588 r=$?
[3149]589 [ "$r" -ne "0" ] && LogAll "WARNING: $incoming not found"
[747]590 res=$(($res+$r))
[2963]591# LogFile "INFO: '$incoming' generates filelist '$filelist'"
[747]592 for fname in $filelist ; do
[3321]593 [ "$fname" != "" ] && echo "$fname" >> $tempfile
[747]594 done
595 progress=$(($progress+1))
[3149]596 LogProgress $progress $noof_lines
[747]597 incoming=`ReadLine`
598 done
[861]599 if [ "$incoming" = "LVMFILES:" ] ; then
600 incoming=`ReadLine`
601 lvmversion=""
602 while [ "$incoming" != "" ] ; do
603 if echo "$incoming" | grep -x " *#.*" &> /dev/null ; then
604 incoming=`ReadLine`
605 continue
606 fi
607 filelist=`GenerateListForFile "$incoming"`
608 for tool in $filelist ; do
609 lvmresolved=`readlink -f $tool`
[1342]610 if [ "$tool" = "$lvmresolved" ]; then
[861]611 echo "$tool" >> $tempfile
612 elif echo "$lvmresolved" | grep "lvmiopversion" &> /dev/null ; then
613 if [ "$lvmversion" = "" ] ; then
614 lvmversion=`$lvmresolved`
615 echo "$lvmresolved" >> $tempfile
616 fi
617 toolstripped=`echo $tool | $AWK -F / '{print $NF;}'`
[1342]618 if [ "$lvmversion" = "200" ]; then
[861]619 # pvdata and lvmcreate_initrd don't exist in LVM2
620 case "$toolstripped" in
621 "pvdata")
622 continue
623 ;;
624 "lvmcreate_initrd")
625 continue
626 ;;
627 esac
628 fi
629 toolpath="/sbin/lvm-"$lvmversion"/"$toolstripped
630 if [ -e "$toolpath" ] ; then
631 echo "$toolpath" >> $tempfile
632 echo "$tool" >> $tempfile
633 else
634 toolpath="/lib/lvm-"$lvmversion"/"$toolstripped
635 fi
636 if [ -e "$toolpath" ] ; then
637 echo "$toolpath" >> $tempfile
638 echo "$tool" >> $tempfile
639 else
640 echo "Where are your LVM-Tools? Couldn't find $tool"
641 fi
642 else
643 echo "$tool" >> $tempfile
644 fi
645 done
646 progress=$(($progress+1))
[3149]647 LogProgress $progress $noof_lines
[861]648 incoming=`ReadLine`
649 done
[747]650 fi
651 echo -en "$DONE\nMaking complete dependency list"
652
653 tr -s '/' '/' < $tempfile | sort -u > $tempfile.new
654 mv -f $tempfile.new $tempfile
655 > $outfile.pre
656 progress=0
657 noof_lines=`cat $tempfile | wc -l`
[2963]658 LogFile "---------------------------------"
659 LogFile "List of dependencies: "
660 LogFile "---------------------------------"
[747]661 for fname in `cat $tempfile` ; do
[1876]662 echo "$fname" | tee -a $LOGFILE >> $outfile.pre
663 LocateDeps $fname | tee -a $LOGFILE >> $outfile.pre
[925]664 progress=$(($progress+1))
[3149]665 LogProgress $progress $noof_lines
[747]666 done
[1684]667 if [ _"$MONDO_SHARE" != _"" ]; then
[925]668 mkdir -p $bigdir/tmp
[3172]669 mkdir -p $bigdir/usr/bin
[940]670 if [ -e "$MINDI_TMP/post-nuke.tgz" ] ; then
[3149]671 LogAll "\nINFO: Incorporating post-nuke tarball"
[925]672 old_pwd=`pwd`
[2712]673 cd "$bigdir"
[3149]674 tar -zxf $MINDI_TMP/post-nuke.tgz 2>> $MINDI_TMP/$$.log || LogAll "ERROR: when untarring post-nuke tarball" $MINDI_TMP/$$.log
[2712]675 cd "$old_pwd"
[747]676 fi
[963]677 if cp -f $MINDI_TMP/mondo*restore $bigdir/usr/bin 2>> $LOGFILE ; then
[925]678 LocateDeps $bigdir/usr/bin/mondo*restore >> $outfile.pre
679 else
[2963]680 LogIt "ERROR: Cannot find mondo*restore in mondo's tempdir, $MINDI_TMP"
681 LogIt " I bet you've got a spare copy of Mondo or Mindi floating around on your system."
[3425]682 LogIt " If Mindi was called by Mondo then send a bug report."
[2963]683 LogIt " It not, type 'ps ax' to see which Mondo-related process is still running then kill it. :-)"
684 LogIt " Finally, run Mindi again."
[925]685 Die "Odd."
686 fi
[2963]687 cp -f $MINDI_TMP/BOOTLOADER.* $bigdir 2>> $LOGFILE || LogIt "\nINFO: Mondo v1.2x defaults to LILO as the bootloader, BTW."
[3270]688 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
[3149]689 LogAll "\nINFO: Incorporating Network-related settings"
[3278]690 for r in NETFS-* ; do
[963]691 cp -f $MINDI_TMP/$r $bigdir/tmp 2>> $LOGFILE || Die "Cannot copy $r - did you run out of disk space?"
[2963]692 LogFile "INFO: Copying $r to ramdisk"
[925]693 done
694 fi
[747]695 fi
[925]696 tr ' ' '\n' < $outfile.pre | tr -s '/' '/' | grep -Fvx "" | sort -u | grep -Ev "/libX11|/libXext|/libXi|/libgtk|/libgdk" > $outfile
[747]697 rm -f $tempfile $outfile.pre
698 [ "$res" -eq "0" ] && echo -e "\r\t\t\t\t\t\t\t\t$DONE" || echo "\nFailed."
699 return $res
700}
701
702
703GenerateListForFile() {
704 local files_found loc fname incoming i res
705 incoming="$1"
706 files_found=""
707 res=0
708
709 for fname in $incoming ; do
710 files_found="$files_found `LocateFile $fname`"
711 done
712
713 echo "$files_found" | tr ' ' '\n' | sort -u | tr '\n' ' '
714}
715
716
717# Returns all disk devices which are part of a raid array
718GetAllRaidMembers() {
719 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*device/ if(\$2) {print \$2}" < /etc/raidtab
720}
721
722
723GetFileSizeList() {
724 local i
725 for i in `find $1 -type d -o -print` ; do
726 du -sk $i
727 done
728}
729
730
[1230]731# Check kernel filesystem capabilites for accessing initrd image
[2429]732# Could be ext2 FS (old mode) or initramfs (new mode)
[1230]733#
734# Interface definition:
735# param #1: absolute path to kernel image
736GetInitrdFilesystemToUse() {
737
738 # interface test: make sure we have one parameter
739 if [ $# -ne 1 ]; then
740 Die "GetInitrdFilesystemToUse(): Expected 1 parameter, got $#."
741 fi
742
743 # interface parameters
744 local lvKernelImage=$1
745
746 # local constants (filesystem magic strings)
747 local lcMagicCramfs="<3>cramfs: wrong magic"
[2047]748 local lcMagicExt2fs="EXT2-fs: blocksize too small for device."
[2390]749 local lcMagicExt3fs="<3>EXT3-fs: blocksize too small for journal device."
[3353]750 local lcMagicInitfs="<6>checking if image is initramfs...|[<]*6[>]*Unpacking initramfs...|[<]*6[>]*Trying to unpack rootfs image as initramfs"
[1230]751
752 # local variables
753 local lvOffset
754 local lvScanRes
755 local lvUseFilesystem
756
757 # say where we are.
[3111]758 LogFile "INFO: GetInitrdFilesystemToUse(): called with parameter: $lvKernelImage"
[1230]759
760 # verify that file exists
761 [ ! -f $lvKernelImage ] && Die "File $lvKernelImage not found. Terminating."
762
[3111]763 # Kernel may be gzip compressed - Case of RHEL5 - SLES11SP1
[1730]764 file $lvKernelImage 2>&1 | grep -q gzip
[1566]765 if [ $? -eq 0 ]; then
[3111]766 LogFile "INFO: Found a gzip compressed kernel $lvKernelImage"
767 lvScanRes=`gzip -cd $lvKernelImage | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicExt3fs|$lcMagicInitfs" 2> /dev/null`
768 else
769 LogFile "INFO: Found a non gzip compressed kernel $lvKernelImage"
770 # kernel is x86 boot sector in RHEL3/4 with embedded gzip content
771 # get offet of gzip magic "1f8b0800" in file (for these older kernels)
772 lvOffset=`od -vA n -t x1 $lvKernelImage | tr -d '[:space:]' | awk '{ print match($0, "1f8b0800")}' 2> /dev/null`
773 if [ $lvOffset -eq 0 ]; then
774 LogFile "INFO: gzip magic not found in file $lvKernelImage. Supposing initramfs."
775 lvScanRes=$lcMagicInitfs
[2393]776 else
[3111]777 lvOffset=`expr $lvOffset / 2`
778 LogFile "INFO: GetInitrdFilesystemToUse(): gzip magic found at lvOffset $lvOffset."
779 # scan again kernel image
780 lvScanRes=`dd ibs=1 skip=$lvOffset if=$lvKernelImage obs=1M 2>/dev/null | gunzip -c 2> /dev/null | strings | grep -E "$lcMagicCramfs|$lcMagicExt2fs|$lcMagicExt3fs|$lcMagicInitfs" 2> /dev/null`
[2393]781 fi
[3111]782 fi
[2393]783
[3111]784 # determine which filesystem to use for initrd image: ext2|3fs, gzip'ed cpio (initramfs) or cramfs
785 if [ `echo $lvScanRes | grep -Ec "$lcMagicExt2fs"` -eq 1 ]; then
786 lvUseFilesystem="ext2fs"
787 elif [ `echo $lvScanRes | grep -Ec "$lcMagicExt3fs"` -eq 1 ]; then
788 lvUseFilesystem="ext3fs"
789 elif [ `echo $lvScanRes | grep -Ec "$lcMagicInitfs"` -eq 1 ]; then
790 lvUseFilesystem="initramfs"
791 elif [ `echo $lvScanRes | grep -Ec "$lcMagicCramfs"` -eq 1 ]; then
792 lvUseFilesystem="cramfs"
[2429]793 else
[3111]794 # In that case, we are most probably after 2.6.30 and use the supported initramfs
[3181]795 LogFile "WARNING: No automatic detection found previously. Supposing initramfs."
796 LogFile "WARNING: Report on the MondoRescue mailing-list with your log files and the result of"
797 LogFile "WARNING: dd ibs=1 skip=$lvOffset if=$lvKernelImage obs=1M 2>/dev/null | gunzip -c 2> /dev/null | strings | grep initramfs"
[1230]798 lvUseFilesystem="initramfs"
799 fi
[3111]800
[1230]801 # say what we are using
[3111]802 LogFile "INFO: GetInitrdFilesystemToUse(): Filesytem to use for initial ram disk is $lvUseFilesystem."
[1230]803
804 # return file system to use
805 echo "$lvUseFilesystem"
806
807}
808
[747]809# Searches members of raid device
810# $1: raid device (/dev/md...)
811GetRaidDevMembers() {
[2917]812 if [ ! -f /etc/raidtab ]; then
813 return
814 fi
[747]815 $AWK "/^[[:space:]]*#/ {next} /^[[:space:]]*raiddev/ {if(dev) exit; if(\$2 == \"$1\") dev=\$2} /^[[:space:]]*device/ {if(dev) {print \$2}}" < /etc/raidtab
816}
817
818
819ListAllPartitions() {
820 local res currline partition all_partitions ap_orig remaining i j
821
[2070]822 grep -Evx " *#.*| *none.*" $MY_FSTAB | $AWK '/^\/dev\/[imhs]d||^LABEL=\/|^UUID=/ && !/\/fdd|\/cdr|\/zip|\/floppy/ {print $1}'
[747]823 [ -e "/etc/raidtab" ] && $AWK '/^ *device/ {print $2}' /etc/raidtab
[1824]824 if [ -e "/vmfs/volumes" ]; then
825 # For VMWare ESX 3 get the device names of these volumes
[2431]826 vdf -P | grep -E '/vmfs/volumes' | $AWK '{print $1}'
[1824]827 fi
[747]828 return
829}
830
831
832ListImagesForUser() {
833 local path fname
[1983]834 path=$MINDI_CACHE
[747]835 echo -en "In the directory '$path' you will find the images:-\n"
836 for fname in `ls $path | grep -F mindi-` ; do
837 printf "%19s " $fname
838 done
839 echo " "
840}
841
842
843ListKernelModulePaths() {
[2583]844 local module_list module fname r kern
[1399]845 module_list="$MODULES"
[1230]846 # Remove unwanted modules from list
847 for i in $DENY_MODS; do
848 module_list=`echo ${module_list} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
849 done
[747]850###
851### Sq-Modification ... Use kernelname for module search path if specified
852###
[3231]853 if [ "${kernelname}" != "" ]
[747]854 then
855 kern=${kernelname}
856 else
[2292]857 kern="$KERVERRUN"
[747]858 fi
[2292]859 export KERVER=$kern
[747]860###
861### Sq-Mod End
862###
[3310]863 # Get rid of duplicates
864 for module in `echo $module_list | tr ' ' '\n' | sort -u` ; do
[747]865 r=`find /lib/modules/$kern -type f | grep "/${module}\..*o" | tail -n1`
[2471]866 if [ -z "$r" ]; then
867 if [ "`echo "$MODULES" | grep -w $module`" ]; then
868 r="[live module file not found]"
869 else
870 r="[extra module file not found]"
871 fi
[2583]872 else
873 [ -f "$r" ] && echo "$r"
[2471]874 fi
[2963]875 LogFile "INFO: module $module --> $r"
[747]876 done
877 find /lib/modules/$kern/modules.* -type f 2> /dev/null
878}
879
[1784]880#
881# Critical function which computes all dependencies (dyn. lib.)
882# for a list of binaries
883#
[747]884LocateDeps() {
885 local incoming fname deps
[1724]886 incoming="$*"
[3231]887 deps=""
888
[747]889 for fname in $incoming ; do
890 if [ ! -e "$fname" ] ; then
[2995]891 LogFile "WARNING: $fname does not exist; cannot be LDD'd."
[747]892 if echo $fname | grep lvm &> /dev/null ; then
[2963]893 LogFile " This warning only affects you if you are using LVM."
[1399]894 if echo "$MODULES" | grep lvm &> /dev/null ; then
[3231]895 LogFile " I think you are, so please take heed!"
[747]896 else
[3231]897 LogFile " I don't think you are, so don't worry about it."
[747]898 fi
899 fi
900 else
[3231]901 deps="$deps $fname"
[747]902 fi
903 done
[3231]904 mr-read-all-link `mr-process-ldd $deps | sort -u` | sort -u
[747]905}
906
[925]907
[747]908LocateFile() {
[3231]909 local i j path fname_to_find location output resolved tmp stub cache_id loclist
[747]910 fname_to_find="$1"
[1526]911 # It's an absolute path
[3231]912 j=`echo "$fname_to_find" | cut -c1`
913 if [ _"$j" = _"/" ]; then
914 dn=`dirname $fname_to_find`
915 # We suppose that the link is already included, just add the new file
916 if [ -h "$dn" ]; then
917 newdn=`readlink -f $dn`
918 bn=`basename $fname_to_find`
919 output="$newdn/$bn"
920 else
921 output="$fname_to_find"
922 fi
[860]923 if [ -h "$output" ] ; then
[3231]924 output="`mr-read-all-link $output` $output"
[860]925 fi
[859]926 echo "$output"
927 return 0
[747]928 fi
[1526]929 # It's not an absolute path
[747]930 output=""
[1526]931 for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin `find /usr/lib /lib /usr/local/lib /usr/X11R6/lib /usr/lib64 /lib64 /usr/local/lib64 /usr/X11R6/lib64 -type d -maxdepth 1 2> /dev/null` ; do
932 #for path in /etc /usr /usr/bin /usr/sbin /bin /usr/X11R6/bin /sbin /usr/local/bin /usr/local/sbin /usr/lib /usr/lib64 /usr/lib64/* /lib /lib64 /lib64/* /usr/local/lib /usr/local/lib64 /usr/local/lib64/* /usr/X11R6/lib /usr/X11R6/lib64 /usr/X11R6/lib64/* ; do
933 [ -h "$path" ] && continue
934 [ ! -e "$path/$fname_to_find" ] && continue
935 output="$path/$fname_to_find $output"
936 if [ -h "$path/$fname_to_find" ] ; then
[3231]937 output="`mr-read-all-link $path/$fname_to_find` $output"
[1526]938 fi
[747]939 done
940 if [ "$output" = "" ] ; then
[860]941 return 1
[747]942 fi
943 echo "$output"
944 return 0
945}
946
[3149]947LogProgress() {
[3293]948 local i progress modres noof_lines title
[3149]949
950 progress=$1
951 noof_lines=$2
[3293]952 title=$3
[747]953
[3149]954 i=$(($progress*100))
955 if [ $noof_lines -ne 0 ]; then
956 i=$(($i/$noof_lines))
957 else
958 i=0
959 fi
[3293]960
961 if [ _"$MONDO_SHARE" != _"" ]; then
962 echo "$title $i%"
963 else
964 echo -en "\r\t\t\t\t\t\t\t\t"
965 echo -en "$i"
966 echo -en "%"
967 modres=$(($progress%4))
968 [ "$modres" -eq "0" ] && echo -en "\t/"
969 [ "$modres" -eq "1" ] && echo -en "\t-"
970 [ "$modres" -eq "2" ] && echo -en "\t\\"
971 [ "$modres" -eq "3" ] && echo -en "\t|"
972 fi
[3149]973}
974
[3278]975# Called by TurnTgzIntoRdz, to make /tmp/$MRCFG
[747]976MakeMondoConfigFile() {
977 local outfile use_lzo use_comp use_star
978 outfile=$1
979 > $outfile
980 [ "$TAPESIZE" ] && echo "media-size $TAPESIZE" >> $outfile
981 [ "$TAPEDEV" ] && echo "media-dev $TAPEDEV" >> $outfile
[1698]982 [ "$USBDEVICE" ] && echo "usb-dev $USBDEVICE" >> $outfile
[747]983 [ "$FILES_IN_FILELIST" ] && echo "files-in-filelist $FILES_IN_FILELIST" >> $outfile
984 [ "$LAST_FILELIST_NUMBER" ] && echo "last-filelist-number $LAST_FILELIST_NUMBER" >> $outfile
985 [ "$INTERNAL_TAPE_BLOCK_SIZE" ] && echo "internal-tape-block-size $INTERNAL_TAPE_BLOCK_SIZE" >> $outfile
986 use_lzo=$USE_LZO; [ "$use_lzo" = "" ] && use_lzo="no"
[998]987 use_gzip=$USE_GZIP; [ "$use_gzip" = "" ] && use_gzip="no"
[3149]988 use_lzma=$USE_LZMA; [ "$use_lzma" = "" ] && use_lzma="no"
[747]989 use_comp=$USE_COMP; [ "$use_comp" = "" ] && use_comp="yes"
990 use_star=$USE_STAR; [ "$use_star" = "" ] && use_star="no"
991 echo "use-lzo $use_lzo" >> $outfile
[998]992 echo "use-gzip $use_gzip" >> $outfile
[747]993 echo "use-star $use_star" >> $outfile
[3149]994 echo "use-lzma $use_lzma" >> $outfile
[747]995 echo "use-comp $use_comp" >> $outfile
[3397]996 echo "boot-type $BOOT_TYPE" >> $outfile
[747]997 echo "datestamp `date`" >> $outfile
998 [ "$ESTIMATED_TOTAL_NOOF_SLICES" ] && echo "total-slices $ESTIMATED_TOTAL_NOOF_SLICES" >> $outfile
[940]999 AddFileToCfgIfExists $MINDI_TMP/ISO-DEV iso-dev $outfile
1000 AddFileToCfgIfExists $MINDI_TMP/ISO-MNT iso-mnt $outfile
1001 AddFileToCfgIfExists $MINDI_TMP/ISO-PREFIX iso-prefix $outfile
[3278]1002 AddFileToCfgIfExists $MINDI_TMP/ISO-DIR iso-dir $outfile
[940]1003 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.DEVICE bootloader.device $outfile
1004 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.NAME bootloader.name $outfile
[3278]1005 AddFileToCfgIfExists $MINDI_TMP/BOOTLOADER.VER bootloader.ver $outfile
[940]1006 AddFileToCfgIfExists $MINDI_TMP/TAPEDEV-HAS-DATA-DISKS tapedev-has-data-disks $outfile
1007 AddFileToCfgIfExists $MINDI_TMP/BACKUP-MEDIA-TYPE backup-media-type $outfile
1008 AddFileToCfgIfExists $MINDI_TMP/DIFFERENTIAL differential $outfile
[3278]1009 AddFileToCfgIfExists $MINDI_TMP/ACL acl $outfile
1010 AddFileToCfgIfExists $MINDI_TMP/XATTR xattr $outfile
1011 AddFileToCfgIfExists $MINDI_TMP/OBDR obdr $outfile
1012
[3270]1013 # Deal with network configuration in a portable way
1014 if [ -f $MINDI_TMP/NETFS-SERVER-MOUNT ]; then
1015 mr-net-get-config `cat $MINDI_TMP/NETFS-SERVER-MOUNT` >> $outfile
1016 fi
[747]1017}
1018
[2618]1019# Get PV's for an LV
1020GetPVsForLV() {
[3368]1021 if [ -n "$1" ]; then
1022 vg=`$LVMCMD lvdisplay $1 2>/dev/null |awk '/VG Name/{print $NF;exit}'`
1023 if [ -z "$vg" ]; then
1024 return
1025 fi
1026 $LVMCMD vgdisplay -v $vg 2>/dev/null | awk '/PV Name/{print $NF}'
1027 fi
[2618]1028}
[747]1029
[2618]1030
[747]1031MakeMountlist() {
[2907]1032 local mountlist all_partitions current_partition \
[747]1033partition_size partition_format outstring partition_number \
1034partition_mountpt c_p lwm_info psz lvm_dev unofficial_outstring \
[2013]1035absolute_partition old_partition_fmt current_lvolume uname skip
[747]1036
[3149]1037 LogFile "------------------------------------"
[2963]1038 LogFile "Your raw fstab file looks like this:"
1039 LogFile "------------------------------------"
[747]1040 cat $MY_FSTAB >> $LOGFILE
[3149]1041 LogAll "-----------------------------------"
[2963]1042 LogAll "Your mountlist will look like this:"
[3149]1043 LogAll "-----------------------------------"
[747]1044
[2907]1045# mountlist(OUT)
[747]1046 mountlist=$1
1047
1048# NB: partition = device
1049# NB: mountpt = where the device is mounted
1050
1051 [ -e "$MY_FSTAB" ] || Die "Cannot find your fstab file ($MY_FSTAB)"
1052
[1684]1053 [ "$mountlist" != "" ] && rm -Rf $mountlist
[747]1054 > $mountlist
1055 all_partitions=""
1056
1057 if [ $LVM != "false" ]; then
[3149]1058 LogAll "INFO: Analyzing LVM..."
[968]1059 $MINDI_LIB/analyze-my-lvm > $MINDI_TMP/lvm.res
[971]1060 if [ $? -ne 0 ]; then
[963]1061 LVM="false"
1062 fi
[2536]1063 # Excluded LVs and GVs are not reported here
[2424]1064 all_partitions=`cat $MINDI_TMP/lvm.res | grep -F ">>>" | cut -d' ' -f2-`
[747]1065 fi
1066 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`"
1067 for i in $IMAGE_DEVS ; do
1068 mount | grep -F "$i " > /dev/null 2> /dev/null && Die "Sorry, $i is already mounted! CANNOT DO IMAGEDEV on it if it's mounted."
1069 done
1070 [ "$IMAGE_DEVS" != "" ] && all_partitions="`echo "$all_partitions $IMAGE_DEVS" | tr ' ' '\n' | sort -u | tr '\n ' ' '`"
[3149]1071 printf "%-15s %-15s %-15s %-13s %-15s\n" DEVICE MOUNTPOINT FORMAT "SIZE MB" LABEL/UUID | tee -a $LOGFILE
1072 printf "%-15s %-15s %-15s %-13s %-15s\n" ------ ---------- ------ ------- ---------- | tee -a $LOGFILE
[3028]1073 useless_dev="/dev/floppy /dev/fd0h1440 /dev/fd0H1440 /dev/cdrom /dev/cdrom/cdrom /dev/cdrom/cdrom1 /dev/cdrom/cdrom2 /dev/cdrom0 /dev/cdrom1 /dev/cdrom2 /dev/cdrom3 /dev/cdrw /dev/scd /dev/ram :/ /dev/sr0 /dev/sr1 /dev/cdrom1 tmpfs devpts sysfs proc debugfs"
[747]1074 for c_p in $all_partitions ; do
[2917]1075 # Skip fd/cd devices, network FS, cifs
[2452]1076 [ "`echo "$useless_dev" | grep -F "$c_p"`" != "" ] || [ "`echo "$c_p" | grep ":"`" != "" ] || [ "`echo "$c_p" | grep -E "^//"`" != "" ]&& continue
[747]1077 [ "`echo "$c_p" | grep -x "/dev/cdroms.*"`" ] && continue
1078 if [ -h "$c_p" ] && [ "`echo "$c_p" | grep -F "/dev/hd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/sd"`" = "" ] && [ "`echo "$c_p" | grep -F "/dev/md"`" = "" ] ; then
[861]1079 current_partition=`readlink -f $c_p`
[3046]1080 if [ "`echo "$current_partition" | grep -F "/dev/mapper"`" != "" ]; then
1081 current_partition="$c_p"
1082 elif [ "`echo $current_partition | grep -E '^/dev/dm-'`" ]; then
[3059]1083 # For SLES 11 type of distro, do not use dm devices as they are unable to be handled by lvm commands
[3066]1084 current_partition=`$MINDI_LIB/analyze-my-lvm --givevglvofdm $current_partition`
[3046]1085 fi
[747]1086 [ "`echo "$useless_dev" | grep -F "$current_partition"`" ] && continue
1087 else
1088 current_partition="$c_p"
1089 fi
1090 [ "$c_p" = "none" ] && continue
1091 redhat_label=""
[1831]1092 label=""
[957]1093 uuid=""
[861]1094 absolute_partition=`readlink -f $c_p`
[2965]1095 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$current_partition" | grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
[747]1096
[1986]1097 # set default in case we dont't find it
1098 str_to_find_fmt_with=$current_partition
1099
[747]1100 # This part tries to retrieve the correct device from a LABEL line in /etc/fstab
1101 # current_partition contains only first column of /etc/fstab
[2965]1102 if [ "`echo "$current_partition" | grep -i "LABEL="`" != "" ]; then
[980]1103 redhat_label=`echo "$current_partition" | cut -d'=' -f2`
[747]1104 actual_dev=""
[853]1105
1106 # 1st try, findfs - the RHEL way of finding labels and their partitions
1107 if [ -x "/sbin/findfs" ]; then
[2847]1108 actual_dev=`/sbin/findfs LABEL="${redhat_label}" 2> /dev/null`
[853]1109 fi
[747]1110
[853]1111 # 2nd try : blkid, the good way for all LABEL except swap
1112 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
[2965]1113 actual_dev=`/sbin/blkid | grep "$redhat_label" | grep LABEL= | cut -d':' -f1`
[747]1114 # For LVM FS it will give a /dev/dm-# which should then be converted
[748]1115 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
[963]1116 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
1117 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
[747]1118 for dev in `ls /dev/mapper/*`; do
[963]1119 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1120 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
[747]1121 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
[963]1122 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
[747]1123 break
1124 fi
1125 done
1126 fi
1127 fi
1128
[853]1129 # 3rd try, which works on a standard partition (ext2/3), but not on swap
[747]1130 # For LVM gives a /dev/mapper entry
1131 if [ "x$actual_dev" = "x" ]; then
[2965]1132 actual_dev=`/bin/mount -l | grep "\[$redhat_label\]" | cut -d' ' -f1`
[747]1133 fi
1134
[853]1135 # 4th try, with vol_id
[747]1136 # SWAP only
1137 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
[2965]1138 list_swaps=`cat /proc/swaps | grep "/dev/" | $AWK '{ print $1 }' `
[747]1139 for dev_swap in $list_swaps ; do
[2965]1140 dev_exists=`/sbin/vol_id $dev_swap | grep "$redhat_label"`
[747]1141 if [ "x$dev_exists" != "x" ]; then
1142 actual_dev=$dev_swap
1143 break;
1144 fi
1145 done
1146 fi
1147
[853]1148 # 5th try : pre-formated LABEL. Format is : LABEL=SWAP-mydevice or SW-mydevice. e.g. : LABEL=SWAP-hda5
[789]1149 # LABEL=SW-cciss/c0d0p3 (RDP)
[853]1150 # or could be a string that isn't a complete device name (eg. LABEL =SWAP-cciss/c0d0p)
[747]1151 # SWAP only
[2965]1152 if [ "x$actual_dev" = "x" -a _"`echo $current_partition | grep -iE 'LABEL=SWAP|LABEL=SW-'`" != _"" ]; then
[2013]1153 skip=""
[2292]1154 uname=$KERVERRUN
[2013]1155 [ "`echo $uname | grep "2.4.[0-9]"`" != "" ] && skip=16
1156 # 2.6.12 needs 16 (FC3)
1157 [ "`echo $uname | grep "2.6.[0-1]"`" != "" ] && skip=16
1158 # 2.6.19 and upper needs 1052
1159 [ "`echo $uname | grep "2.6.19"`" != "" ] && skip=1052
1160 [ "`echo $uname | grep "2.6.[2-9]"`" != "" ] && skip=1052
[2892]1161 [ "`echo $uname | grep "3.[0-9]*.[0-9]*"`" != "" ] && skip=1052
[2013]1162 if [ $skip = "" ]; then
1163 Die "Your kernel is too old. I don't know how to support labelled swap spaces with it"
1164 fi
[853]1165 for try_dev in `tail +2 /proc/swaps | cut -d' ' -f1`
1166 do
1167 # Location of the swap label for kernel 2.6
[2013]1168 try_dev_label=`dd bs=1 count=16 skip=$skip if=$try_dev 2> /dev/null`
[853]1169 if [ "x$try_dev_label" = "x$redhat_label" ]; then
[855]1170 actual_dev=$try_dev
[853]1171 fi
1172 done
[747]1173 fi
[1008]1174
1175 # Check if one of all those tries has known success
1176 if [ "x$actual_dev" != "x" ]; then
1177 current_partition=$actual_dev
1178 else
[1885]1179 Die "Your system uses a LABEL partition ($current_partition), but you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or install findfs|blkid|vol_id"
[1008]1180 fi
[957]1181 # This part tries to retrieve the correct device from a UUID line in /etc/fstab
1182 # current_partition contains only first column of /etc/fstab
[2965]1183 elif [ "`echo "$current_partition" | grep -i "UUID="`" != "" ]; then
[980]1184 uuid=`echo "$current_partition" | cut -d'=' -f2`
[957]1185 actual_dev=""
1186
1187 # 1st try, findfs - the RHEL way of finding labels and their partitions
1188 if [ -x "/sbin/findfs" ]; then
1189 actual_dev=`/sbin/findfs UUID=${uuid} 2> /dev/null`
1190 fi
1191
[1531]1192 # 2nd try : blkid, the good way for all UUID except swap
[957]1193 if [ "x$actual_dev" = "x" -a -x "/sbin/blkid" ]; then
[2965]1194 actual_dev=`/sbin/blkid | grep "$uuid" | grep UUID= | cut -d':' -f1`
[957]1195 # For LVM FS it will give a /dev/dm-# which should then be converted
1196 if [ $LVM = "v2" ] && [ "`echo $actual_dev | grep '/dev/dm'`" ]; then
[963]1197 major=`/bin/ls -l $actual_dev | $AWK '{print $5}'`
1198 minor=`/bin/ls -l $actual_dev | $AWK '{print $6}'`
[957]1199 for dev in `ls /dev/mapper/*`; do
[963]1200 major1=`/bin/ls -l $dev | $AWK '{print $5}'`
1201 minor1=`/bin/ls -l $dev | $AWK '{print $6}'`
[957]1202 if [ $major1 = $major ] && [ $minor1 = $minor ]; then
[963]1203 actual_dev=`/bin/ls -l $dev | $AWK '{print $10}'`
[957]1204 break
1205 fi
1206 done
1207 fi
1208 fi
1209
1210 # 3th try, with vol_id
1211 if [ "x$actual_dev" = "x" -a -x "/sbin/vol_id" ]; then
[2965]1212 list_dev=`mount | grep -E '^/' | $AWK '{ print $1 }' `
[957]1213 for dev in $list_dev ; do
[2965]1214 dev_exists=`/sbin/vol_id $dev | grep "$uuid"`
[957]1215 if [ "x$dev_exists" != "x" ]; then
1216 actual_dev=$dev
1217 break;
1218 fi
1219 done
1220 fi
1221
[1531]1222 # 4th try, with dumpuuid (VMWare only ?) for swap
1223 if [ "x$actual_dev" = "x" -a -x "/sbin/dumpuuid" ]; then
[2965]1224 list_dev=`cat /proc/swaps | grep -E '^/' | $AWK '{ print $1 }' `
[1531]1225 for dev in $list_dev ; do
[2965]1226 dev_exists=`/sbin/dumpuuid $dev | grep "$uuid"`
[1531]1227 if [ "x$dev_exists" != "x" ]; then
1228 actual_dev=$dev
1229 break;
1230 fi
1231 done
1232 fi
1233
[747]1234 # Check if one of all those tries has known success
1235 if [ "x$actual_dev" != "x" ]; then
1236 current_partition=$actual_dev
1237 else
[2069]1238 Die "Your system uses a UUID partition ($current_partition),\nbut you lack the tool to support it.\nPlease replace labels with their correct devices in $MY_FSTAB or\ninstall findfs|blkid|vol_id or\nrelabel the partition with the correct UUID if it's a swap partition."
[747]1239 fi
1240 else
[1863]1241 # Needs to handle the recent OpenSUSE fancy way of dealing with fstab :-(
1242 # they use symlinks in fstab unrelated to what is shown in mount !
1243 if [ _"$partition_mountpt" = _"" ]; then
[1986]1244 # set default in case we dont't find it
[2965]1245 for tmpp in `tr -s '\t' ' ' < $MY_FSTAB | grep -Ev "^#" | $AWK '{print $1}'`; do
[3084]1246 if [ _"`readlink -f $tmpp`" = _"`readlink -f $current_partition`" ]; then
[1863]1247 str_to_find_fmt_with=$tmpp
[2965]1248 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$tmpp" | grep -vx " *#.*" | $AWK '{print $2}' | head -n1`
[1864]1249 break;
[1863]1250 fi
1251 done
1252 fi
[747]1253 fi
1254
[3084]1255 # Detects noauto partitions not mounted and exclude them
1256 partition_option=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$str_to_find_fmt_with" | grep -vx " *#.*" | $AWK '{print $4}' | head -n1`
1257 if [ "`echo "$partition_option" | grep -i noauto`" != "" ] && [ "`mount | grep -w "$partition_mountpt"`" = "" ] ; then
1258 LogFile "INFO: Excluding $current_partition from mountlist (due to noauto option in fstab)"
1259 continue
1260 fi
1261 # Detects bind partitions and exclude them
1262 if [ "`echo "$partition_option" | grep -iw bind`" != "" ]; then
1263 LogFile "INFO: Excluding $current_partition from mountlist (due to bind option in fstab)"
1264 continue
1265 fi
1266
[2566]1267 # Look for devices which have to be excluded
1268 skip=0
1269 if [ "$MINDI_EXCLUDE_DEVS" ] ; then
[2568]1270 l=""
[3231]1271 list_of_devices="`mr-read-all-link $current_partition`"
[2568]1272 for d in $list_of_devices; do
[2579]1273 l="$l `$MINDI_LIB/analyze-my-lvm --givemapperofdm $d`"
[2568]1274 done
[2618]1275
1276 # Remove PVs from LVs excluded
1277 l="$l `GetPVsForLV $current_partition`"
1278
1279 # We want a single unique list
[2568]1280 list_of_devices="`echo $l | sort -u`"
[2618]1281
[2854]1282 for d in `echo $MINDI_EXCLUDE_DEVS | sed 's/|/ /g'`; do
[2568]1283 if [ "`echo " $list_of_devices " | grep " $d"`" != "" ]; then
[2963]1284 LogFile "INFO: Excluding $current_partition from mountlist (due to excluded device $d)"
[2566]1285 skip=1
1286 continue
1287 fi
1288 done
1289 fi
1290 if [ $skip -eq 1 ]; then
1291 continue
1292 fi
1293
[747]1294 partition_format=`$AWK '$1 == "'"$str_to_find_fmt_with"'" {print $3}' $MY_FSTAB`
[3028]1295 # Detects iso9660 ISO images and exclude them
1296 if [ "`echo "$partition_format" | grep -iw iso9660`" != "" ]; then
[3064]1297 LogFile "INFO: Excluding $current_partition from mountlist (due to iso9660 format in fstab)"
[3028]1298 continue
1299 fi
[747]1300 # Some distributions such as Debian do not put /dev/<VG>/<LV> in fstab
1301 # for LVM partitions but use /dev/mapper/<VG>-<LV> instead. Fortunately,
1302 # the former is then a link to the latter, so we test whether
1303 # $current_partition is actually such a link or not and set
[755]1304 # $current_lvolume accordingly. On Debian you may find more than one answer
1305 # so we remove the one corresponding to /dev/.static
1306 # On RedHat even if the device name is different (/dev/mapper/<VG><LV>), the
1307 # principle is the same and we need to find the link to it as well.
1308 # Note that $current_lvolume may well be an
[747]1309 # ordinary device. It is just to make sure that we feed the right value
1310 # into any of the LVM tools if possible.
1311
[3064]1312 current_lvolume="$current_partition"
[763]1313 if [ $LVM = "v2" ] && [ "`echo $current_partition | grep -E '^/dev/mapper/'`" ]; then
[755]1314 # .static dir are a Debian specificity
[763]1315 current_lvolume="`find /dev -lname "$current_partition" | grep -Ev '^/dev/\.static/'`"
[755]1316 echo $current_lvolume | grep -q ' '
[784]1317 if [ $? -eq 0 ]; then
[2963]1318 LogFile "WARNING: Multiple Logical Volumes found. Report to dev team"
[755]1319 fi
[2072]1320 # if it's not found, it may well be a real device such as a multipath one
1321 # /dev/mapper/mpath... Thus we revert the situation so that next test succeed
1322 if [ _"$current_lvolume" = _"" ]; then
1323 current_lvolume="$current_partition"
1324 fi
[747]1325 fi
1326 #
1327 # End of LVM device style variation code (other than $current_lvolume).
1328
[745]1329 if [ $LVM != "false" ] && [ "`$LVMCMD lvdisplay $current_lvolume 2> /dev/null`" ]; then
1330 # Size computed via LVM not directly
[747]1331 partition_size="lvm"
1332 else
1333 [ "`echo "$current_partition" | grep "[0-9]"`" = "" ] && continue
1334 [ "`echo "$current_partition" | grep -c "^/"`" -ne "1" ] && continue
1335 if [ "$partition_format" = "swap" ] || [ "$partition_mountpt" = "swap" ] ; then
[2947]1336 # Skip swap files
1337 [ "`echo "$current_partition" | grep -E "^/dev"`" = "" ] && continue
[2919]1338 partition_size=`grep -Fv "Priority" /proc/swaps | tr -s '\t' ' ' | grep -F "$current_partition " | $AWK '{print $3}'`
[747]1339 [ "$partition_mountpt" != "swap" ] && partition_mountpt="swap"
[3368]1340 [ "$partition_format" != "swap" ] && partition_format="swap"
[747]1341 if [ "$partition_size" = "" ] ; then
[3368]1342 totalsize=0
1343 items=0
1344 for i in `tr -s ' ' '\t' < /proc/swaps | grep -Fv "Filename" | cut -f3` ; do
[747]1345 totalsize=$(($totalsize+$i))
1346 items=$(($items+1))
[3368]1347 done
1348 [ "$items" -gt "0" ] && partition_size=$(($totalsize/$items)) || partition_size=0
1349 [ "$partition_size" -lt "125000" ] && partition_size=125000
1350 LogFile "INFO: I'm guessing $c_p is $(($partition_size/1024))MB"
[747]1351 fi
[2947]1352 else
1353 partition_size=`SizeOfPartition $current_partition`
[747]1354 fi
1355 fi
1356 [ "$partition_mountpt" = "swap" ] && partition_format="swap"
1357 [ "$partition_format" = "swap" ] && partition_mountpt="swap"
1358 if [ "$partition_mountpt" = "" ] ; then
1359 if [ "`$LVMCMD pvdisplay $current_lvolume 2> /dev/null`" != "" ] ; then
1360 if [ "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
1361 partition_mountpt="raid"
1362 partition_format="raid"
1363 else
1364 partition_mountpt="lvm"
1365 partition_format="lvm"
1366 fi
1367 fi
1368 fi
1369 psz=$partition_size
[2963]1370 LogFile "INFO: Examining $current_partition (mount=$partition_mountpt fmt=$partition_format psz=$psz)"
[747]1371 [ "$psz" != "lvm" ] && psz=$(($psz/1024))
1372 if [ "`echo " $IMAGE_DEVS " | grep -F " $current_partition "`" != "" ] ; then
1373 partition_mountpt="image"
1374 old_partition_fmt=$partition_format
1375 partition_format="`$FDISK -l 2>> $LOGFILE | tr '*' ' ' | tr '+' ' ' | tr -s ' ' '\t' | grep -w "$absolute_partition" | cut -f5`"
1376 partition_size=$(($partition_size+1)); # just in case
1377 if [ "$partition_format" = "Linux" ] ; then
[2963]1378 LogFile "WARNING: Are you imaging a mounted swap partition? Silly..."
1379 LogFile "WARNING: Reverting format from $old_partition_fmt to $partition_format"
[747]1380 partition_format=$old_partition_fmt
1381 fi
1382 fi
[2566]1383
[747]1384 if [ ! "$partition_mountpt" ] ; then
[2963]1385 LogFile "------- $FDISK -l $qq log ------------"
[1883]1386 for qq in "" `find /dev/ida/c*d* ! -name '*p*' 2> /dev/null`; do
[747]1387 partition_format=`$FDISK -l $qq 2>> $LOGFILE | grep -w "$c_p" | sed 's/12/|/' | tr -s '\t' ' ' | cut -d'|' -f2 | cut -d' ' -f2-9`
1388 [ "$partition_format" ] && break
1389 done
[2963]1390 LogFile "------- $FDISK log end ------------"
[747]1391 if [ "$partition_format" = "Compaq diagnostics" ] ; then
1392 partition_format="compaq"
1393 elif [ ! "`grep -F device /etc/raidtab 2> /dev/null | grep -w $current_partition`" ] ; then
[3149]1394 LogAll "WARNING: Unable to find mountpoint of $current_partition - ignoring"
[747]1395 continue
1396 fi
1397 fi
[1755]1398 if [ "$redhat_label" ]; then
1399 label="$redhat_label"
[1756]1400 elif [ "$uuid" ]; then
[1755]1401 label="$uuid"
1402 fi
[3330]1403
1404 # On RHEL 7 they use UUID concretely, even when not mentioned in fstab
1405 # in order to mount the root part e.g. in grub.
1406 # One way to solve this is to add the UUID now, if there wasn't one so it's
1407 # restored correctly
1408 if [ _"$label" = _"" ]; then
1409 label=`blkid $current_partition | perl -p -e 's/.* UUID="([A-z0-9-]+)" .*/$1/'`
1410 fi
1411
[747]1412 partition_format="`echo "$partition_format" | cut -d',' -f1`"; # in case user has ext3,ext2 or something dumb like that
[963]1413 [ "$partition_format" = "auto" ] && partition_format="`mount | grep -w $current_partition | $AWK '{print$5;}'`"; # in case user uses 'auto' (dumb!)
[3149]1414 unofficial_outstring=`printf "%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label"`
[747]1415 if [ "$current_partition" = "" ] ; then
[2963]1416 LogFile "WARNING: Unknown partition (outstring = $unofficial_outstring)"
[747]1417 elif [ "$partition_mountpt" = "" ] && [ -f "/etc/raidtab" ] ; then
1418 if [ "`grep -F device /etc/raidtab 2>/dev/null | grep -F $current_partition`" ] ; then
1419 partition_mountpt=raid
1420 partition_format=raid
[3149]1421 printf "%-15s %-15s %-15s %7s %15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
[1755]1422 printf "%s %s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
[747]1423 else
[2963]1424 LogFile "WARNING: Unknown mountpoint (outstring = $unofficial_outstring)"
[747]1425 fi
1426 elif [ "$partition_format" = "" ] ; then
[2963]1427 LogFile "WARNING: Unknown format (outstring = $unofficial_outstring)"
[747]1428 elif [ "$partition_size" = "" ] ; then
[2963]1429 LogFile "WARNING: Unknown partition size (outstring = $unofficial_outstring)"
[747]1430 elif [ "$partition_mountpt" = "/proc" ] || [ "$partition_mountpt" = "/dev/pts" ] ; then
1431 continue
1432 else
1433 if [ "$partition_format" = "dos" ] || [ "$partition_format" = "msdos" ] ; then
[2963]1434 LogFile "WARNING: vfat should be used instead of dos/msdos as a partition format"
[747]1435 partition_format="vfat"
1436 fi
[3149]1437 printf "%-15s %-15s %-15s %7s %-15s\n" $current_partition $partition_mountpt $partition_format $psz "$label" | tee -a $LOGFILE
[1755]1438 printf "%s %s %s %s %s\n" $current_partition $partition_mountpt $partition_format $partition_size "$label" >> $mountlist
[747]1439 fi
1440 done
[3149]1441 LogAll "-----------------------------------"
[747]1442}
1443
[2432]1444CheckMountlist() {
1445 local file=$1
1446 # Coherency verification
[2529]1447 ML01=`cat $file | wc -l`
[2995]1448 ML02=`grep -vE ' lvm | raid | swap ' $file | wc -l`
[2432]1449 ML1=`$AWK '{print $1}' $file | sort -u | wc -l`
[3024]1450 ML2=`grep -vE ' lvm | raid | swap ' $file | $AWK '{print $2}' | sort -u | wc -l`
[2529]1451 if [ "$ML01" -ne "$ML1" ]; then
[2963]1452 LogFile "--------------------------------------------"
[3081]1453 LogAll "WARNING: Duplicate device entry in mountlist"
[2963]1454 LogFile "--------------------------------------------"
[2432]1455 fi
[2529]1456 if [ "$ML02" -ne "$ML2" ]; then
[2963]1457 LogFile "--------------------------------------------"
1458 LogAll "WARNING: Duplicate mountpoint entry in mountlist"
1459 LogFile "------------------------------------------------"
[2432]1460 fi
1461}
[747]1462
1463OfferToMakeBootableISO() {
[3403]1464 local i old_pwd files
[2457]1465 if [ -z "$ISO_CMD" ]; then
[3149]1466 LogAll "ERROR: Neither mkisofs nor genisoimage found, unable to make CD image"
[2457]1467 return
1468 fi
[1684]1469 if [ "$PROMPT_MAKE_CD_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
[966]1470 echo -en "Shall I make a bootable CD image? (y/[n]) "
[747]1471 read i
1472 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1473 fi
[940]1474 rm -Rf $MINDI_TMP/iso
[1983]1475 mkdir -p $MINDI_TMP/iso/{images,archives}
[3403]1476 files=`ls $MINDI_CACHE/{*.gz,*.img}`
1477 cp -f $files $MINDI_TMP/iso/images 2>> $LOGFILE || LogAll "WARNING: OfferToMakeBootableISO: Cannot copy files to $MINDI_TMP/iso/images"
[747]1478 for i in memdisk memtest.bin memtest.img ; do
[953]1479 j=$MINDI_LIB/$i
[1983]1480 k=$MINDI_TMP/iso
[953]1481 if [ -e "$j" ] ; then
[3149]1482 LogAll "INFO: Copying $j to $k"
[2092]1483 cp -f $j $k 2>> $LOGFILE || Die "Failed to copy $j to $k"
1484 cp -f $j $MINDI_TMP 2>> $LOGFILE || Die "Failed to copy $j to $MINDI_TMP"
[1885]1485 if [ _"$MONDO_SHARE" != _"" ]; then
1486 cp -f $j $MONDO_ROOT 2>> $LOGFILE || Die "Failed to copy $j to $MONDO_ROOT"
1487 fi
[953]1488 fi
[747]1489 done
[3476]1490
[3173]1491 MakeMessageFile $MINDI_TMP/iso | cut -c1-80 > $MINDI_TMP/iso/message.txt
[3476]1492
[2629]1493 if [ $KERNEL_IS_XEN = "yes" ]; then
[3241]1494 FindMboot32Binary
[2629]1495 cp $xenkernelpath $MINDI_TMP/iso/xen.gz 2>> $LOGFILE || Die "Cannot copy xen.gz ($xenkernelpath) to mindi tmp ($MINDI_TMP/iso/xen.gz). Did you run out of disk space?"
1496 cp $MBOOTC32 $MINDI_TMP/iso/mboot.c32 2>> $LOGFILE || Die "Cannot copy mboot.c32 ($MBOOTC32) to mindi tmp ($MINDI_TMP/iso/mboot.c32). Did you run out of disk space?"
1497 fi
[3476]1498
[2681]1499 cp $kernelpath $MINDI_TMP/iso/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/iso/vmlinuz). Did you run out of disk space?"
1500 cp $MINDI_TMP/initrd.img $MINDI_TMP/iso/initrd.img 2>> $LOGFILE || Die "Cannot copy initrd.img ($MINDI_TMP/initrd.img) to $MINDI_TMP/iso/initrd.img. Did you run out of disk space?"
[747]1501 if [ "$ARCH" != "ia64" ] ; then
[2092]1502 cp $ISOLINUX $MINDI_TMP/iso/isolinux.bin 2>> $LOGFILE || Die "Cannot copy isolinux.bin ($ISOLINUX) to $MINDI_TMP/iso - did you run out of disk space?"
[747]1503 fi
[3421]1504
1505 # copy boot stuff now generated in PrepareDataDiskImage
[3425]1506 if [ "$BOOT_TYPE" = "UEFI" ]; then
[3421]1507 (cd $MINDI_TMP/iso ; tar xfz $MINDI_CACHE/all.tar.gz ./EFI)
1508 tbc="EFI"
1509 else
1510 (cd $MINDI_TMP/iso ; tar xfz $MINDI_CACHE/all.tar.gz ./boot)
1511 tbc="boot"
1512 fi
1513
[3476]1514 if [ _"$MONDO_SHARE" != _"" ]; then
1515 if [ $KERNEL_IS_XEN = "yes" ]; then
1516 cp $xenkernelpath $MONDO_ROOT/xen.gz 2>> $LOGFILE || Die "Cannot copy $xenkernelpath to mondo tmp ($MONDO_ROOT/xen.gz). Did you run out of disk space?"
1517 cp $MBOOTC32 $MONDO_ROOT/ 2>> $LOGFILE || Die "Cannot copy $MBOOTC32 to mondo tmp ($MONDO_ROOT/). Did you run out of disk space?"
1518 fi
[3479]1519 if [ -e "$LDLINUXC32" ]; then
[3476]1520 cp $LDLINUXC32 $MONDO_ROOT/ 2>> $LOGFILE || Die "Cannot copy $LDLINUXC32 to $MONDO_ROOT/. Did you run out of disk space?"
1521 fi
1522 cp $kernelpath $MONDO_ROOT/vmlinuz 2>> $LOGFILE || Die "Cannot copy $kernelpath to mondo root ($MONDO_ROOT/vmlinuz). Did you run out of disk space?"
1523 cp $MINDI_TMP/initrd.img $MONDO_ROOT/ 2>> $LOGFILE || Die "Cannot copy $MINDI_TMP/initrd.img to $MONDO_ROOT/. Did you run out of disk space?"
1524 fi
1525
1526
[1983]1527 old_pwd=`pwd`
[2712]1528 cd "$MINDI_TMP/iso"
[747]1529 if [ "$ARCH" != "ia64" ] ; then
[1885]1530 if [ _"$MONDO_SHARE" != _"" ]; then
[3476]1531 cp -rf $MINDI_TMP/iso/{initrd.img,vmlinuz,isolinux.bin,message.txt,boot*.txt,pxe.txt,$tbc} $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy core files to ramdisk for boot disk (under $MONDO_ROOT). Did you run out of disk space?"
1532 cfgf=`find $MINDI_TMP/iso -name 'isolinux.cfg' | head -1`
[3479]1533 if [ -e "$cfgf" ]; then
[3476]1534 cp $cfgf $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy $cfgf to $MONDO_ROOT. Did you run out of disk space?"
[3241]1535 fi
[2681]1536 if [ $KERNEL_IS_XEN = "yes" ]; then
[3476]1537 cp -f $MINDI_TMP/iso/xen.gz $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy Xen kernel to $MONDO_ROOT. Did you run out of disk space?"
[2629]1538 fi
[1983]1539 cp -f $MONDO_SHARE/autorun $MINDI_TMP/iso 2>> $LOGFILE
[1885]1540 fi
[3476]1541 CMD="$ISO_CMD -U $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
[747]1542 else
[3476]1543 CMD="$ISO_CMD $ISO_OPT -V Mindi_Image -o $MINDI_CACHE/mindi.iso -b images/mindi-bootroot.img -c images/boot.cat -no-emul-boot"
[747]1544 fi
[3421]1545 LogFile "Invoking $CMD"
[3476]1546 $CMD . > /dev/null 2> $MINDI_TMP/mkisofs.log
[747]1547 if [ "$?" -ne "0" ] ; then
[3476]1548 if [ "$BOOT_TYPE" = "UEFI" ]; then
1549 CMD=`echo $CMD | perl -p -e 's|-efi-boot |-eltorito-platform 0xEF -eltorito-boot |'`
1550 $CMD . > /dev/null 2> $MINDI_TMP/mkisofs.log
1551 if [ "$?" -eq "0" ] ; then
1552 LogAll "INFO: Created bootable ISO image at $MINDI_CACHE/mindi.iso"
1553 else
1554 MakeISOErrors
1555 fi
1556 else
1557 MakeISOErrors
1558 fi
[747]1559 else
[2963]1560 LogAll "INFO: Created bootable ISO image at $MINDI_CACHE/mindi.iso"
[747]1561 fi
[940]1562 rm -f $MINDI_TMP/mkisofs.log
[2712]1563 cd "$old_pwd"
[747]1564}
1565
[3476]1566MakeISOErrors() {
[747]1567
[3476]1568LogFile "----------- $ISO_CMD's errors --------------"
1569LogAll "$CMD returned the following errors:"
1570cat $MINDI_TMP/mkisofs.log | tee -a $LOGFILE
1571LogAll "ERROR: Failed to create ISO image."
1572}
1573
1574
[1684]1575OfferToMakeBootableUSB() {
[3403]1576 local i files
[1684]1577 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ _"$MONDO_SHARE" = _"" ]; then
[2621]1578 echo -n "Shall I make a bootable USB device ? (y/[n]) "
[1764]1579 read i
1580 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
1581 if [ "$USBDEVICE" = "" ]; then
1582 echo -en "Please enter the device name of your USB device (e.g. /dev/sda) : "
1583 read dev
1584 USBDEVICE=$dev
[1722]1585 fi
[1764]1586 echo "WARNING: This will erase all content on $USBDEVICE"
1587 echo -en "Are you sure you want to use $USBDEVICE (y/[n]) "
[2040]1588 read i
1589 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0
[1684]1590 fi
1591 rm -Rf $MINDI_TMP/usb
1592 mkdir -p $MINDI_TMP/usb
1593 USBPART="${USBDEVICE}1"
1594
1595 echo -en "Transforming $USBDEVICE in a Bootable device "
1596 echo -en "."
[2963]1597 LogFile "INFO: Transforming $USBDEVICE in a Bootable device"
1598 LogFile "INFO: Checking $USBDEVICE"
[2924]1599 $FDISK -l $USBDEVICE 2>&1 >> $LOGFILE
[1684]1600 if [ $? -ne 0 ]; then
[2963]1601 LogAll "ERROR: Unable to access $USBDEVICE"
[3086]1602 LogAll " Make sure your USB device is plugged in"
[2963]1603 MindiExit -1
[1684]1604 fi
1605 echo -en "."
[3149]1606 # Some distro do auto mount at that point (Ubuntu)
[2963]1607 LogFile "INFO: Unmounting $USBPART just in case"
[1721]1608 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE
[3419]1609 if [ "$BOOT_TYPE" = "BIOS" ]; then
[3403]1610 # If your key has no MBR it may cause an issue
1611 # Use dd if=mbr.bin of=$USBDEVICE or ms-sys -s $USBDEVICE
1612 if [ -r $MBRFILE ]; then
1613 LogAll "INFO: Installing an MBR ($MBRFILE) on $USBDEVICE"
1614 dd if=$MBRFILE of=$USBDEVICE
1615 else
1616 LogAll "WARNING: You may need to install an MBR (usually in $MBRFILE, but not found on your system)"
1617 LogAll " on $USBDEVICE with dd if=$MBRFILE of=$USBDEVICE"
1618 fi
[2855]1619 fi
[2963]1620 LogFile "INFO: Preparing $USBDEVICE"
[2851]1621 cat > $MINDI_TMP/fdisk.txt << EOF
[2057]1622d
1623d
1624d
1625d
[1684]1626n
1627p
16281
1629
1630
1631t
1632b
1633a
16341
1635w
1636EOF
[2851]1637 $FDISK $USBDEVICE 2>> $LOGFILE 1>> $LOGFILE < $MINDI_TMP/fdisk.txt
[1684]1638 if [ $? -ne 0 ]; then
[2963]1639 LogAll "ERROR: Unable to create a vfat Filesystem on $USBDEVICE"
[3086]1640 LogAll " Make sure your USB device is plugged in"
[1684]1641 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1642 MindiExit -1
1643 fi
[2963]1644 LogFile "fdisk build file"
1645 LogFile "----------------"
[2851]1646 cat $MINDI_TMP/fdisk.txt >> $LOGFILE
[2963]1647 LogFile "----------------"
[2924]1648 rm -f $MINDI_TMP/fdisk.txt
[2963]1649 LogFile "INFO: The USB device $USBDEVICE now looks like this:"
[2190]1650 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
[1684]1651 echo -en "."
[3006]1652 # Calling kpartx in case devices were not created
[3033]1653 if [ -x "/sbin/kpartx" ]; then
[3027]1654 /sbin/kpartx -a $USBDEVICE
1655 fi
[2461]1656 # Some distro do auto mount at that point (Ubuntu)
[2963]1657 LogFile "INFO: Unmounting $USBPART just in case again"
[2461]1658 umount $USBPART 2>> $LOGFILE 1>> $LOGFILE
1659 echo -en "."
[3086]1660 # Some distro have a dmsetup conf at that point so removing it Cf: http://trac.mondorescue.org/ticket/651
1661 if [ "`which dmsetup`" != "" ]; then
[3368]1662 block_id="`echo $USBPART | sed 's/\/dev\///g'`"
1663 if [[ "`dmsetup ls | awk '{print $1}' | grep $block_id`" != "" ]]; then
1664 LogFile "INFO: Removing $block_id from device mapper."
1665 sleep 1
1666 dmsetup remove $block_id
1667 fi
1668 fi
[3086]1669 echo -en "."
[2963]1670 LogFile "INFO: Creating a vfat filesystem on $USBPART"
[1688]1671 mkdosfs -F 32 $USBPART 2>&1 >> $LOGFILE
[1684]1672 if [ $? -ne 0 ]; then
[2963]1673 LogAll "ERROR: Unable to create a vfat filesystem on $USBPART"
[3086]1674 LogAll " Make sure your USB device is plugged in and partitioned ($USBPART must exist on it)"
[1684]1675 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1676 MindiExit -1
1677 fi
1678 echo -en "."
[2963]1679 LogFile "INFO: Mounting $USBPART on $MINDI_TMP/usb"
[1684]1680 mount $USBPART $MINDI_TMP/usb 2>> $LOGFILE
1681 if [ $? -ne 0 ]; then
[2963]1682 LogAll "ERROR: Unable to mount $USBPART on $MINDI_TMP/usb"
[3086]1683 LogAll " Make sure your USB device is plugged in, partitioned and formated ($USBPART must exist on it)"
[1684]1684 $FDISK -l $USBDEVICE 2>&1 | tee -a $LOGFILE
1685 MindiExit -1
1686 fi
1687 echo -en "."
[1691]1688 mkdir -p $MINDI_TMP/usb/images
[3403]1689 files=`ls $MINDI_CACHE/{*.gz,*.img}`
1690 cp -f $files $MINDI_TMP/usb/images 2>> $LOGFILE || LogAll "ERROR: OfferToMakeBootableUSB: Cannot copy files to $MINDI_TMP/usb/images"
[1684]1691 echo -en "."
1692 for i in memdisk memtest.bin memtest.img ; do
1693 j=$MINDI_LIB/$i
1694 k=$MINDI_TMP/usb
1695 if [ -e "$j" ] ; then
[3425]1696 LogFile "INFO: Copying $j to $k"
[2092]1697 cp -f $j $k 2>> $LOGFILE || Die "Failed to copy $j to $k"
1698 cp -f $j $MINDI_TMP 2>> $LOGFILE || Die "Failed to copy $j to $MINDI_TMP"
[1684]1699 fi
1700 done
1701 echo -en "."
[3173]1702 MakeMessageFile $MINDI_TMP/usb | cut -c1-80 > $MINDI_TMP/usb/message.txt
[1684]1703 echo -en "."
[2092]1704 cp $kernelpath $MINDI_TMP/usb/vmlinuz 2>> $LOGFILE || Die "Cannot copy vmlinuz ($kernelpath) to mindi tmp ($MINDI_TMP/usb/vmlinuz). Did you run out of disk space?"
[1684]1705 echo -en "."
[1983]1706 cp $MINDI_TMP/initrd.img $MINDI_TMP/usb/initrd.img 2>> $LOGFILE
[1684]1707 echo -en "."
[2041]1708 MakeBootConfFile syslinux > $MINDI_TMP/usb/syslinux.cfg
[1684]1709 echo -en "."
[2963]1710 LogAll "----------- syslinux's conf --------------"
[2476]1711 cat $MINDI_TMP/usb/syslinux.cfg |tee -a $LOGFILE
[2963]1712 LogAll "------------------------------------------"
[1721]1713 umount $MINDI_TMP/usb
[1684]1714 if [ "$ARCH" != "ia64" ] ; then
[2939]1715 syslinux -v 2>&1 | grep -q 4.02
1716 if [ $? -eq 0 ]; then
1717 # This buggy version of syslinux requires a call to --stupid and not -s
1718 syslinux --stupid $USBPART 2>> $MINDI_TMP/syslinux.log
1719 res=$?
1720 else
1721 syslinux -s $USBPART 2>> $MINDI_TMP/syslinux.log
1722 res=$?
1723 fi
1724 if [ $res -ne 0 ] ; then
[2963]1725 LogAll "----------- syslinux's errors --------------"
[1684]1726 cat $MINDI_TMP/syslinux.log |tee -a $LOGFILE
[2963]1727 LogAll "------------------------------------------"
1728 LogIt "ERROR: Failed to create USB image."
[1684]1729 else
1730 echo -e "$DONE"
[2963]1731 LogFile "INFO: Created bootable USB image on $USBDEVICE"
[1684]1732 fi
1733 rm -f $MINDI_TMP/syslinux.log
1734 else
[2963]1735 LogAll "ERROR: No USB boot support for ia64"
[1684]1736 MindiExit -1
1737 fi
1738}
1739
1740
[747]1741MakeMessageFile() {
[2292]1742
1743 if [ -x "/bin/lsb_release" ]; then
1744 DESC=`/bin/lsb_release -d | cut -d: -f2 | sed "s/[ \t]*//"`
[3173]1745 elif [ -r /etc/arch-release ]; then # this code must be written before /etc/issue test to avoid errors
1746 DESC="Arch Linux"
1747 if [ -r /var/log/pacman.log ]; then
1748 # there are no releases but we can get the last system upgrade
1749 # Output example: Arch Linux [2011-03-03 01:39]
1750 DESC="$DESC $(tac /var/log/pacman.log | grep -m1 'full system upgrade' | cut -d']' -f1)]"
[2754]1751 fi
[3426]1752 elif [ -x "/etc/os-release" ]; then
1753 DESC=`grep PRETTY_NAME /etc/os-release | cut -d= -f2`
1754 elif [ -x "/usr/bin/pbdistrocheck" ]; then
1755 # For pb >= 0.9.8
1756 DESC=`/usr/bin/pbdistrocheck -s | cut -d, -f1-4 | sed 's/,/-/g'`
[2732]1757 elif [ -r /etc/issue.net ]; then
[2731]1758 DESC=`head -1 /etc/issue.net`
[2732]1759 elif [ -r /etc/issue ]; then
[2731]1760 DESC=`head -1 /etc/issue`
[747]1761 else
[2731]1762 DESC="Unknown desc"
[747]1763 fi
[2292]1764 sed "s/ZZZZZ/$MINDI_VERSION/" $MINDI_LIB/msg-txt | sed "s/KKKKK/Kernel $KERVER/" | sed "s/AAAAA/on a $ARCH architecture/" | sed "s/TTTTT/`LC_TIME=C date`/" | sed "s/MMMMM/`hostname`/" | sed "s/DDDDD/$DESC/"
[1885]1765 if [ _"$MONDO_SHARE" != _"" ]; then
1766 if [ "$CDRECOVERY" != "yes" ] ; then
[3270]1767 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
[3281]1768 echo -en "Press <0eenter07> for 0cnetwork restore07\n"
[3278]1769 echo -en "$BOOT_MEDIA_MESSAGE"
[1885]1770 elif [ ! "$MINDI_TMP" ] ; then
1771 echo -en "FYI, this is _not_ a Mondo Rescue CD.\n"
[1983]1772 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1773 echo -en "Type 'memtest' <Enter> to test your PC's memory intensively.\nJust press <Enter> to go to the main test menu.\n"
1774 fi
[1885]1775 else
1776 echo -en "$BOOT_MEDIA_MESSAGE"
[747]1777 fi
[1983]1778 else
1779 echo -en "\
[747]1780To restore your disk to factory defaults, type 'RESTORE' <enter>.\n\
1781CAUTION: THIS WILL ERASE YOUR WHOLE DISK !!!\n"
[1983]1782 fi
[747]1783 fi
[3173]1784
1785 # Also create the other help screens
1786 head -24 $MINDI_CONF/README.bootparam | cut -c1-80 > $1/boot1.txt
1787 head -48 $MINDI_CONF/README.bootparam | tail -24 | cut -c1-80 > $1/boot2.txt
1788 head -24 $MINDI_CONF/README.pxe | cut -c1-80 > $1/pxe.txt
[747]1789}
1790
1791
[1983]1792MakeBootConfFile() {
[1885]1793 local options i ooo
[747]1794 options=""
[1983]1795 # Type of boot file (elilo or syslinux/isolinux)
1796 type=$1
1797 if [ "$type" = "elilo" ]; then
1798 sep="="
[3398]1799 sepdef="="
[1983]1800 else
1801 sep=" "
[3398]1802 sepdef=" "
1803 if [ "$type" = "grub" ]; then
1804 sepdef="="
1805 fi
[1983]1806 fi
[925]1807
[1983]1808 # Generic header for conf file
[3398]1809 if [ "$type" = "elilo" ]; then
1810 echo -en "prompt\n"
1811 elif [ "$type" = "grub" ]; then
1812 echo -en "pause Press a key when ready to restore\n"
1813 else
[3173]1814 echo -en "prompt 1\ndisplay message.txt\nF1 message.txt\nF2 boot1.txt\nF3 boot2.txt\nF4 pxe.txt\n"
[925]1815 fi
[1983]1816
1817 # Compute which default option to boot from
[3398]1818 echo -en "default${sepdef}"
[747]1819 if [ "$CDRECOVERY" = "yes" ] ; then
[3398]1820 if [ "$type" = "grub" ]; then
[3430]1821 # TODO: Which num ???
[3398]1822 echo -en "0\n"
1823 else
1824 echo -en "RESTORE\n"
1825 fi
[1983]1826 # In case it's mondoarchive
[1885]1827 elif [ _"$MONDO_SHARE" != _"" ]; then
[3270]1828 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
[3398]1829 if [ "$type" = "grub" ]; then
1830 echo -en "3\n"
1831 else
1832 echo -en "iso\n"
1833 fi
[747]1834 else
[3398]1835 if [ "$type" = "grub" ]; then
1836 echo -en "1\n"
1837 else
1838 echo -en "${MINDI_DEFAULT_BOOT_OPTION}\n"
1839 fi
[747]1840 fi
1841 else
[3398]1842 if [ "$type" = "grub" ]; then
1843 echo -en "0\n"
1844 else
1845 echo -en "expert\n"
1846 fi
[747]1847 fi
1848
[1983]1849 # Handle timeout
[747]1850 if [ "$CDRECOVERY" != "yes" ] ; then
[3053]1851 echo -en "timeout${sep}${MINDI_BOOT_TIMEOUT}\n"
[1983]1852 else
1853 echo -en "timeout${sep}10000\n"
[747]1854 fi
1855 echo -en "\n"
[1983]1856
[2124]1857 # prepare which labels will be generated
[747]1858 if [ "$CDRECOVERY" = "yes" ] ; then
[925]1859 options="RESTORE expert"
[1885]1860 else
1861 if [ _"$MONDO_SHARE" != _"" ]; then
[2344]1862 options="interactive expert compare iso nuke isonuke"
[747]1863 else
1864 options="expert"
[925]1865 fi
[747]1866 fi
[1983]1867
1868 # Generate rest of conf file
[747]1869 for i in $options ; do
[925]1870 ooo=$i
[3111]1871 [ "$ooo" = "RESTORE" ] && ooo="RESTORE nuke"
[1983]1872 if [ "$type" = "elilo" ]; then
[2564]1873 outstr="image=/vmlinuz\n\tlabel=$i\n\tinitrd=/initrd.img\n\troot=/dev/ram0 append=\" rw ramdisk_size=$ramdisk_size $ooo $MINDI_ADDITIONAL_BOOT_PARAMS \"\n"
[3398]1874 elif [ "$type" = "grub" ]; then
[3415]1875 outstr="title $i\n\tkernel /vmlinuz root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo} $MINDI_ADDITIONAL_BOOT_PARAMS\n\tinitrd=/initrd.img\n"
[925]1876 else
[2073]1877 ps="/"
1878 if [ "$type" = "syslinux" ]; then
1879 ps=""
1880 fi
[2629]1881 if [ $KERNEL_IS_XEN = "no" ]; then
1882 outstr="label $i\n\tkernel ${ps}vmlinuz\n\tappend initrd=${ps}initrd.img root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo} $MINDI_ADDITIONAL_BOOT_PARAMS\n"
1883 else
1884 outstr="label $i\n\tkernel ${ps}mboot.c32\n\tappend ${ps}xen.gz --- ${ps}vmlinuz root=/dev/ram0 rw ramdisk_size=$ramdisk_size ${ooo} $MINDI_ADDITIONAL_BOOT_PARAMS --- ${ps}initrd.img\n"
1885 fi
[925]1886 fi
[1885]1887 echo -en "$outstr"
[747]1888 done
[1983]1889 if [ -e "$MINDI_LIB/memtest.img" ] ; then
1890 if [ "$type" = "elilo" ]; then
1891 echo -en "image=/memtest.bin\n\tlabel=memtest\n"
[2073]1892 echo -en "image=/memdisk\n\tlabel=memdisk\nappend=\"initrd=memtest.img\"\n"
[3398]1893 elif [ "$type" = "grub" ]; then
[3415]1894 echo -en "title memtest\n\tkernel /memtest.efi\n\tinitrd=/memtest.img\n"
[1983]1895 else
[2073]1896 ps="/"
1897 if [ "$type" = "syslinux" ]; then
1898 ps=""
1899 fi
1900 echo -en "label memtest\n\tkernel ${ps}memtest.bin\n"
1901 echo -en "label memdisk\n\tkernel ${ps}memdisk\nappend initrd=${ps}memtest.img\n"
[1983]1902 fi
1903 fi
[747]1904}
1905
[3398]1906PrepareBootDiskImage() {
1907 # LILO originally
[3476]1908 local dev imagefile fname i kernelpath cfg_file testpath options retval outstr old_pwd ooo max_kernel_size bootconf bootimage
[1983]1909 kernelpath=$1
[747]1910 retval=0
[3149]1911
[3162]1912 old_pwd=`pwd`
[3398]1913 [ ! -e "$kernelpath" ] && Die "PBDI - cannot find $kernelpath kernel"
[1885]1914 echo -en "Making "$BOOT_SIZE"KB boot disk..."
[1983]1915 TurnTgzIntoRdz $MINDI_LIB/rootfs $MINDI_TMP/initrd.img `du -sk $kernelpath | cut -f1` || Die "Could not turn rootfs into initrd.img; are you SURE your kernel supports loopfs?"
[747]1916 echo -en "..."
[3406]1917 imagefile=$MINDI_TMP/mindi-bootroot.img
[747]1918 mkdir -p $mountpoint
[1885]1919 dd if=/dev/zero of=$imagefile bs=1k count=$BOOT_SIZE &> /dev/null || Die "Cannot dd blank file"
[3479]1920 if [ "$BOOT_TYPE" = "UEFI" ]; then
1921 # Should be GPT in that case to allow direct boot
1922 parted -s $imagefile mklabel gpt
[3480]1923 parted -s $imagefile mkpart fat32 1 ${BOOT_SIZE}k 2> /dev/null
1924 kpartx -a $imagefile
1925 imagefile2=/dev/mapper/`kpartx -l $imagefile | awk '{print $1}'`
[3479]1926 fi
1927 LogFile "INFO: Creating vfat filesystem on $imagefile"
[3480]1928 mkfs.vfat $imagefile2 >> $LOGFILE 2>> $LOGFILE
[3398]1929
[3485]1930 if [ "$BOOT_TYPE" = "BIOS" ]; then
1931 # syslinux should be run on a local file (doen't work through NFS Cf: #297)
1932 # and run after the formating for versions > 6 it seems
1933 syslinux $imagefile >> $LOGFILE 2>> $LOGFILE
1934 imagefile2=$imagefile
1935 fi
1936
[3398]1937 # Only move it now to its final destination and use it now
[3406]1938 mv $imagefile $MINDI_CACHE
1939 imagefile=$MINDI_CACHE/mindi-bootroot.img
[3398]1940
[3480]1941 mount -t vfat -o loop $imagefile2 $mountpoint || LogAll "ERROR: Cannot mount (PBDI)"
[3149]1942
[2963]1943 LogFile "INFO: Copying $MINDI_TMP/initrd.img to $mountpoint/initrd.img..."
[1983]1944 cp -f $MINDI_TMP/initrd.img $mountpoint/initrd.img 2>> $LOGFILE
[747]1945 if [ "$?" -ne "0" ] ; then
[2963]1946 LogAll "ERROR: Failed to copy $MINDI_TMP/initrd.img to $mountpoint"
1947 LogAll " Please unload some of your modules and try again."
[3398]1948 LogAll "ERROR: Cannot incorporate initrd.img in bootdisk (kernel / modules too big?)"
[2963]1949 LogAll " Try to increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
[747]1950 retval=$(($retval+1))
1951 fi
[3398]1952 MakeMessageFile $mountpoint | cut -c1-80 > $mountpoint/message.txt
[747]1953
1954 mkdir -p $mountpoint/tmp
[3278]1955 if [ -f "$MINDI_TMP/$MRCFG" ]; then
1956 cp -f $MINDI_TMP/$MRCFG $mountpoint/tmp
[1983]1957 fi
[747]1958
[925]1959 # copy the kernel across
[1230]1960 [ "$mountpoint" != "" ] && rm -Rf $mountpoint/lost+found
[747]1961 dd if=/dev/zero of=$mountpoint/zero bs=1k count=16 &> /dev/null
[1796]1962 free_space=`df -k -P $mountpoint | tail -n1 | tr -s ' ' '\t' | cut -f4`
[3368]1963
[2629]1964 retval=0
[3398]1965 cp -f $kernelpath $mountpoint/vmlinuz > /dev/null 2>> $LOGFILE
[2681]1966 retval=$?
1967 if [ $KERNEL_IS_XEN = "yes" ]; then
[2629]1968 cp -f $xenkernelpath $mountpoint/xenkernel &> /dev/null
1969 let retval+=$?
1970 fi
1971
1972 if [ "$retval" -ne "0" ] ; then
[2963]1973 LogFile "INFO: Files at mountpoint ($mountpoint) :"
[747]1974 du -sk $mountpoint/* >> $LOGFILE
[2963]1975 LogFile "--- end of list of files ---"
[2691]1976 echo -en "Kernel size = `du -sk $kernelpath | cut -f1` K\nRamdisk free = $free_space K\n" >> $LOGFILE
[1998]1977 [ "$mountpoint" != "" ] && rm -f $mountpoint/vmlinuz
[2712]1978 cd "$old_pwd"
[747]1979 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
[3149]1980 rmdir $mountpoint || LogAll "ERROR: Cannot rmdir (PBDI)"
[3398]1981 [ "$imagefile" != "" ] && rm -f $imagefile
[2963]1982 LogIt "ERROR: Sorry, your kernel is too big for your image"
[2773]1983 Die "Try to increase EXTRA_SPACE and BOOT_SIZE in $MINDI_CONFIG"
[747]1984 fi
1985 max_kernel_size=$(($free_space+`du -sk $kernelpath | cut -f1`))
[2963]1986 LogFile "INFO: Free space left on image = $free_space KB"
1987 LogFile "INFO: Max kernel size on $BOOT_SIZE KB image (est'd) = $max_kernel_size K"
[925]1988
1989 # make it bootable
[1998]1990 [ "$mountpoint" != "" ] && rm -f $mountpoint/zero
[963]1991 [ -e "$MINDI_LIB/memdisk" ] && cp -f $MINDI_LIB/memdisk $mountpoint 2>> $LOGFILE
[3398]1992
[3428]1993 # copy boot stuff now generated in PrepareDataDiskImage
1994 if [ "$BOOT_TYPE" = "UEFI" ]; then
1995 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./EFI)
1996 else
1997 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./boot)
1998 fi
1999
[747]2000 umount $mountpoint || Die "Cannot unmount mountpoint ($mountpoint)"
2001 echo -en "..."
[3149]2002 rmdir $mountpoint || LogAll "ERROR: Cannot rmdir (PBDI)"
[747]2003
2004 if [ "$retval" -eq "0" ] ; then
[1885]2005 echo -en "...$DONE\n"
[3398]2006 LogAll "INFO: $BOOT_SIZE KB boot disks were created OK\n"
[747]2007 else
[1885]2008 echo -en "...failed\n"
[3149]2009 LogAll "WARNING: $BOOT_SIZE""KB boot disk was NOT created\n"
[747]2010 fi
[3402]2011 [ "$retval" -ne "0" ] && LogAll "ERROR: PrepareBootDiskImage() is returning $retval"
[747]2012 return $retval
2013}
2014
[2006]2015ParseModprobeForIncludes() {
2016local MODPROBE_CONF mpincfile includes include
2017
2018MODPROBE_CONF=/etc/modprobe.conf
2019mpincfile=$1
2020touch $mpincfile
2021if [ -a $MODPROBE_CONF ]; then
[2431]2022 includes=$($AWK '/^[ \t]*include[ \t]+/ {if(NF>=2){print $2}}' $MODPROBE_CONF|sort -u)
[2006]2023 if [ -n "$includes" ]; then
2024 for include in $includes
2025 do
2026 if [ -a "$include" ]; then
2027 echo $include >> $mpincfile
2028 fi
2029 done
2030 fi
2031fi
2032}
2033
2034
[747]2035PrepareDataDiskImages() {
[3407]2036 local needlist bigdir diskdir res i j k old_pwd lines lfiles includefile
[747]2037
[3407]2038 rm -f $MINDI_CACHE/mindi.iso
[940]2039 needlist=$MINDI_TMP/what-we-need.txt
2040 bigdir=$MINDI_TMP/bigdir
[747]2041 mkdir -p $bigdir/usr/bin
[1983]2042 mkdir -p $bigdir/usr/sbin
[2006]2043 includefile=$MINDI_TMP/$$.includefile.txt
[747]2044
[3149]2045 lfiles=`ls $DEPLIST_DIR/* | grep -v /minimal`
[2409]2046 if [ -e "$DEPLIST_FILE" ]; then
[3149]2047 lfiles="$DEPLIST_FILE $lfiles"
[2409]2048 fi
[1885]2049 lines=`grep -vx " *#.*" $lfiles | grep -vx "" | wc -l`
[2006]2050 ParseModprobeForIncludes $includefile
[2019]2051 lines=$(($lines+`cat $includefile | wc -l`))
[2006]2052 cat $lfiles $includefile | GenerateGiantDependencyList $needlist $lines
[747]2053 res=$?
[2006]2054 rm -f $includefile
[3231]2055 ListKernelModulePaths >> $needlist
[747]2056 if [ "$res" -ne "0" ] ; then
[1902]2057 Die "You have $res files present in dependency list\nbut absent from filesystem."
[747]2058 fi
2059 mkdir -p $bigdir/tmp
[1885]2060 if [ _"$MONDO_SHARE" != _"" ]; then
[3430]2061 # TODO: no reason to have the cfg file stored twice
[3278]2062 MakeMondoConfigFile $MINDI_TMP/$MRCFG
2063 cp -f $MINDI_TMP/$MRCFG $bigdir/tmp &> /dev/null
[747]2064 fi
[3281]2065
2066 # Needs to be done after the MRCFG creation
2067 FindAndAddUserKeyboardMappingFile
2068
[3166]2069 [ -d "/mnt/.boot.d" ] && echo "GENTOO" > $bigdir/tmp/DUMBASS-GENTOO
[747]2070 DropOptimizedLibraries $needlist $bigdir
2071 echo -en "Assembling dependency files"
2072
[3149]2073 CopyDependenciesToDirectory < $needlist $bigdir `wc -l $needlist`
2074
[925]2075 # also copy io.sys and msdos.sys, if we can find them
[747]2076 for i in `mount | cut -d' ' -f3` ; do
[925]2077 for j in io.sys msdos.sys ; do
[963]2078 [ -e "$i/$j" ] && cp -f $i/$j $bigdir 2>> $LOGFILE
[925]2079 done
[747]2080 done
2081
[925]2082 # master boot record, too
[940]2083 i=`cat $MINDI_TMP/BOOTLOADER.DEVICE 2> /dev/null`
[3403]2084 if [ "$i" ] && [ "$BOOT_TYPE" = "BIOS" ]; then
[3149]2085 LogAll "INFO: Backing up $i's MBR"
[925]2086 dd if=$i of=$bigdir/BOOTLOADER.MBR bs=446 count=1 >> $LOGFILE 2>> $LOGFILE
2087 sleep 1
2088 sync
2089 j=$i
2090 [ -h "$j" ] && j=`readlink -f $j`
[3149]2091 LogAll "INFO: Creating /dev/boot_device ($j)"
[925]2092 mkdir -p $bigdir/dev
[2089]2093 cp -pRdf $j $bigdir/dev/boot_device 2>> $LOGFILE || Die "Unable to create /dev/boot_device on ramdisk"
[747]2094 fi
2095
2096 old_pwd=`pwd`
[2712]2097 cd "$bigdir"
[747]2098
[1983]2099 # Get terminfo content
2100 ti="usr/share/terminfo/l"
2101 if [ -d /$ti ]; then
2102 mkdir -p $ti
[3149]2103 cp -Rdf /$ti/* $ti 2>> $LOGFILE || LogAll "ERROR: issue copying terminfo"
[747]2104 fi
[1764]2105 if [ -e "$MONDO_SHARE/restore-scripts" ]; then
[747]2106 cp -Rdf $MONDO_SHARE/restore-scripts/* . 2>> $LOGFILE
[1335]2107 [ "$?" -ne "0" ] && [ _"$MONDO_SHARE" != _"" ] && Die "Cannot find/install $MONDO_SHARE/restore-scripts"
[747]2108 fi
[2290]2109 if [ -d "/lib/dev-state" ]; then
[3231]2110 cp -a /lib/dev-state ./lib/ 2>> $MINDI_TMP/$$.log || LogAll "ERROR: Unable to handle /lib/dev-state" $MINDI_TMP/$$.log
[2290]2111 fi
[2712]2112 cd "$old_pwd"
[747]2113 echo -e "$DONE"
2114 TOTAL_BIGDIR_SIZE=`du -sk $bigdir | cut -f1`
[940]2115 MakeMountlist $MINDI_TMP/mountlist.txt
[2432]2116 CheckMountlist $MINDI_TMP/mountlist.txt
[1902]2117 mkdir -p $bigdir/tmp
[2092]2118 cp -f $MINDI_TMP/mountlist.txt $bigdir/tmp/mountlist.txt 2>> $LOGFILE || Die "Cannot copy mountlist.txt from $MINDI_TMP to data disk"
[1885]2119 if [ _"$MONDO_SHARE" != _"" ]; then
[1902]2120 cp -f $bigdir/tmp/mountlist.txt $MINDI_TMP/. 2>> $LOGFILE
[1885]2121 fi
[2032]2122 if [ $LVM != "false" ]; then
2123 $MINDI_LIB/analyze-my-lvm > $bigdir/tmp/i-want-my-lvm
2124 if [ "$?" -ne "0" ]; then
2125 LVM="false"
2126 rm -f $bigdir/tmp/i-want-my-lvm
[2552]2127 else
[2963]2128 LogFile "Your i-want-my-lvm file content is:"
2129 LogFile "-----------------------------------"
[2552]2130 cat $bigdir/tmp/i-want-my-lvm >> $LOGFILE
[2963]2131 LogFile "-----------------------------------"
[2032]2132 fi
2133 fi
[2963]2134 LogFile "Your mountlist.txt file content is:"
2135 LogFile "-----------------------------------"
[1902]2136 cat $bigdir/tmp/mountlist.txt >> $LOGFILE
[2963]2137 LogFile "-----------------------------------"
[2432]2138
[2092]2139 echo -en "$FILES_IN_FILELIST" > $bigdir/FILES-IN-FILELIST 2>> $LOGFILE
2140 echo -en "$LAST_FILELIST_NUMBER" > $bigdir/LAST-FILELIST-NUMBER 2>> $LOGFILE
[1902]2141 if [ _"$MONDO_SHARE" != _"" ]; then
2142 for q in filelist.full.gz biggielist.txt ; do
2143 [ ! -e "$MINDI_TMP/$q" ] && Die "Cannot find $MINDI_TMP/$q"
2144 cp -pRdf $MINDI_TMP/$q $bigdir/tmp 2>> $LOGFILE
2145 done
2146 fi
2147
[3476]2148 # copy (e)lilo/isolinux/grub/whatever stuff into it as well
[3419]2149 # to get it on the media (in addition to the boot part
2150 # and also to support UEFI boot mechanism
2151 bootdir=$bigdir/boot
[3476]2152 bootconf="$bootdir/syslinux.cfg"
2153 boottype=isolinux
[3419]2154 mkdir -p $bootdir
2155 if [ "$BOOT_TYPE" != "BIOS" ]; then
2156 if [ "$BOOT_TYPE" = "UNKNOWN" ]; then
2157 LogAll "ERROR: UNKNOWN BOOT_TYPE. Please report upstream"
2158 MindiExit -1
2159 fi
2160 # EFI or UEFI
[3430]2161 # TODO: names are hard-coded for now
[3419]2162 if [ "$BOOT_TYPE" = "UEFI" ]; then
2163 # UEFI
[3476]2164 efidir=$bigdir/EFI/BOOT
[3483]2165 # Use syslinux.efi as the default boot loader ... but it doesn't work for now :-(
[3476]2166 FindSyslinux64EFI
2167 bootbin=$SYSLINUX64EFI
2168 bootconf="$efidir/syslinux.cfg"
[3483]2169 # On RHEL6 grub works
2170 dname=`pbdistrocheck | grep -E '^Name:' | cut -d':' -f2`
2171 dver=`pbdistrocheck | grep -E '^Ver:' | cut -d':' -f2`
2172 if [ $dname = "rhel" ] && [ $dver = "6" ]; then
2173 bootbin="grub*.efi"
2174 bootconf="$efidir/grub.conf"
2175 boottype=grub
2176 elif [ $dname = "rhel" ] && [ $dver = "7" ]; then
2177 bootbin="grub*.efi"
2178 bootconf="$efidir/grub.conf"
2179 boottype=grub2
2180 fi
[3419]2181 else
2182 # EFI
[3476]2183 efidir=$bootdir
2184 bootbin=`find /boot/efi -iname "elilo.efi" | head -1`
2185 boottype=elilo
2186 bootconf="$efidir/elilo.conf"
[3419]2187 fi
2188
2189 # Copy it so that CD-ROM menu entry is satisfied
2190 mountefi=0
2191 df -T | grep /boot/efi | grep -qE 'vfat'
2192 if [ $? -ne 0 ]; then
2193 mount /boot/efi
2194 if [ $? -ne 0 ]; then
2195 echo "You have to mount your (U)EFI partition when using mindi"
2196 MindiExit -1
2197 fi
2198 mountefi=1
2199 fi
[3476]2200 mkdir -p $efidir
2201 cp $bootbin $efidir
[3419]2202 if [ $mountefi -eq 1 ]; then
2203 umount /boot/efi 2>&1 > /dev/null
2204 fi
[3479]2205
2206 FindLdlinuxe64Binary
2207 if [ -e "$LDLINUXE64" ]; then
2208 LogFile "INFO: Copying $LDLINUXE64 to $efidir"
2209 cp $LDLINUXE64 $efidir 2>> $LOGFILE || Die "Cannot copy $LDLINUXE64 to $efidir). Did you run out of disk space?"
2210 fi
2211 else
2212 # Useful for syslinux 5.x
2213 FindLdlinux32Binary
2214 if [ -e "$LDLINUXC32" ]; then
2215 LogFile "INFO: Copying $LDLINUXC32 to $bootdir"
2216 cp $LDLINUXC32 $bootdir 2>> $LOGFILE || Die "Cannot copy $LDLINUXC32 to $bootdir). Did you run out of disk space?"
2217 fi
[3419]2218 fi
[3479]2219
[3476]2220 MakeBootConfFile $boottype > $bootconf
[3419]2221
[1902]2222 echo -en "Tarring and zipping the data content..."
2223 size_of_all_tools=`du -sk $bigdir | cut -f1`
[3407]2224 (cd "$bigdir" ; tar -b 4096 -cf - . 2>> $MINDI_TMP/$$.log | gzip -9 > $MINDI_CACHE/all.tar.gz || LogAll "ERROR: Problem creating all.tar.gz" $MINDI_TMP/$$.log)
[3149]2225 LogFile "Size of the data content"
2226 LogFile "------------------------"
[3407]2227 du -sk $MINDI_CACHE/*gz >> $LOGFILE
[3149]2228 LogFile "------------------------"
[1902]2229 echo -e "$DONE"
2230
[747]2231 FRIENDLY_OUTSTRING="Boot and data disk images were created."
[1902]2232 rm -rf $bigdir
[747]2233 rm -f $needlist
2234}
2235
2236
2237Prompt() {
2238 echo -en "$1"
2239 read line
2240}
2241
2242
2243ReadLine() {
2244 local i incoming
2245 read incoming
2246 i=0
2247 while [ "$i" -le "32" ] && [ "$incoming" = "" ] ; do
[925]2248 i=$(($i+1))
2249 read incoming
[747]2250 done
2251 echo "$incoming"
2252}
2253
2254
2255SizeOfPartition() {
2256 local devpath drive res stub
2257 device=$1
[2917]2258 if [ "`echo "$device" | grep -E "^/dev/"`" = "" ] ; then
2259 Die "Cannot find $device's size - is your /etc/fstab sane?"
2260 fi
[747]2261 if [ "`echo "$device" | grep -F "/dev/md"`" != "" ] ; then
[925]2262 res=`SizeOfRaidPartition $device`
2263 [ "$res" = "" ] && Die "Cannot find $device's size - is your /etc/raidtab sane?"
2264 echo "$res"
2265 return 0
[747]2266 fi
[925]2267 # patch from Bill <bill@iwizard.biz> - 2003/08/25
[960]2268 res=`$FDISK -s $device 2>> $LOGFILE`
[925]2269 # end patch
[2448]2270 # take only the first in case of multiple mount (cifs, nfs, ...)
2271 [ "$res" = "" ] && res=`df -k -P -x supermount | tr -s '\t' ' ' | grep -F "$device " | cut -d' ' -f2 | head -1`
[747]2272 [ "$res" = "" ] && res="-1"
2273 echo $res
2274 return 0
2275}
2276
2277
2278SizeOfRaidPartition() {
2279 local real_dev smallest_size silly tmp
2280
2281 silly=999999999
2282 smallest_size=$silly
2283
2284 for real_dev in `GetRaidDevMembers $1` ; do
[925]2285 tmp=`SizeOfPartition $real_dev`
2286 [ "$tmp" -lt "$smallest_size" ] && smallest_size=$tmp
[747]2287 done
2288
2289 if [ "$smallest_size" = "$silly" ] ; then
[925]2290 echo "-1"
2291 return 1
[747]2292 else
[925]2293 echo "$smallest_size"
2294 return 0
[747]2295 fi
2296}
2297
2298
2299StripExecutable()
2300{
2301 local tmpfile
[925]2302
[940]2303 tmpfile=$MINDI_TMP/stripped.$$.dat
[747]2304 [ -d "$1" ] || [ -h "$1" ] && return
[963]2305 cp -f $1 $tmpfile 2>> $LOGFILE
[747]2306 strip $tmpfile 2> /dev/null
2307 if [ "$?" -eq "0" ] ; then
[963]2308 cp -f $tmpfile $1 2>> $LOGFILE
[2963]2309 LogFile "INFO: Stripped binary $2"
[747]2310 fi
2311 rm -f $tmpfile
2312}
2313
[2292]2314KernelVer() {
2315 local fkern_ver fname
[747]2316
[2292]2317 fname=$1
2318 file $fname | grep -q gzip
2319 if [ "$?" -eq "0" ] ; then
2320 # Used by ia64
[3248]2321 fkern_ver=`gzip -cd $fname | strings 2> /dev/null | grep -E "[2-9]+\.[0-9]+\.[0-9]+[^\@]*@"`
[2292]2322 else
[3248]2323 fkern_ver=`strings $fname 2> /dev/null | grep -E "[2-9]+\.[0-9]+\.[0-9]+[^\@]*@"`
[2292]2324 fi
2325 echo "$fkern_ver"
2326}
2327
2328
[2880]2329# WARNING: This function should just echo the final result !!!
2330#
[747]2331TryToFindKernelPath() {
[2880]2332 local fname fkern_ver we_want_version possible_kernels noof_kernels possible_xenkernels noof_xenkernels kp kdate duff_kernels output root
[925]2333
[2292]2334 we_want_version=$KERVERRUN
[747]2335 possible_kernels=""
2336 duff_kernels=""
[2880]2337 output=""
[3368]2338
[747]2339 if [ "$ARCH" = "ia64" ] ; then
2340 root="/boot/efi/efi"
2341 else
2342 root="/"
2343 fi
[2681]2344 # See if we're booted from a Xen kernel
[2889]2345 # From http://wiki.xensource.com/xenwiki/XenCommonProblems#head-26434581604cc8357d9762aaaf040e8d87b37752
2346 if [ -f /proc/xen/capabilities ]; then
[2681]2347 # It's a Xen kernel
2348 KERNEL_IS_XEN="yes"
[2963]2349 LogFile "INFO: It's a Xen kernel..."
[2681]2350 fi
2351
[3122]2352 for fname in `find $root -maxdepth 2 -type f | grep -Ei 'lin|kern|xen' | grep -Ev '^/proc/|^/net/|^/mnt|^/lib|^/lib64|^/bin|^/sbin|^/usr|^/tmp'` ; do
[925]2353 [ ! -e "$fname" ] && continue
[747]2354 [ "$fname" = "/boot/vmlinuz.shipped" ] && [ -f "/boot/vmlinuz" ] && continue; # ignore SuSE's extra kernel
[2292]2355 fkern_ver=`KernelVer $fname`
[747]2356 [ "$fkern_ver" = "" ] && continue
2357 [ "`echo "$fkern_ver" |grep -F "$we_want_version "`" = "" ] && continue
[925]2358 [ -f "$fname" ] || continue
2359 [ -h "$fname" ] && continue
2360 kdate=`uname -v | $AWK '{for(i=1;i<NF;i++){if(index($i,":")){print $i;};};}' | $AWK '{print $NF;}'`
2361 file $fname | grep -q gzip
2362 if [ "$?" -eq "0" ] ; then
2363 # Used by ia64
2364 if [ "`gzip -cd $fname | strings 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
[2880]2365 LogFile "Have you recompiled your kernel \"$fname\" w/o rebooting? Naughty but I'll allow it..."
[925]2366 duff_kernels="$fname $duff_kernels"
2367 else
[747]2368 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2369 possible_kernels="$fname $possible_kernels"
[925]2370 fi
[747]2371 else
[925]2372 if [ "`strings $fname 2> /dev/null | grep -F "$kdate"`" = "" ] ; then
[2880]2373 LogFile "Have you recompiled your kernel \"$fname\" w/o rebooting?\n Naughty but I'll allow it..."
[925]2374 duff_kernels="$fname $duff_kernels"
2375 else
[747]2376 [ "`echo "$fname" | grep -F "vmlinux"`" ] && continue
2377 possible_kernels="$fname $possible_kernels"
[925]2378 fi
[747]2379 fi
2380 done
2381 if [ ! "$possible_kernels" ] && uname -a | grep Knoppix > /dev/null ; then
[3182]2382 possible_kernels=`find /boot/vmlinuz-[23].* | tail -n1`
[747]2383 fi
2384 if [ ! "$possible_kernels" ] ; then
[3149]2385 LogAll "INFO: No kernel matches exactly. Are there any duff kernels?"
[747]2386 possible_kernels="$duff_kernels"
2387 if [ ! "$possible_kernels" ] ; then
[3149]2388 LogAll "INFO: Sorry, no duff kernels either"
[747]2389 else
[3149]2390 LogAll "INFO: I bet you're running Debian or Gentoo, aren't you?"
2391 LogAll "INFO: Your kernel doesn't have a sane builddate. Oh well..."
[747]2392 fi
2393 fi
[2681]2394 if [ $KERNEL_IS_XEN = "yes" ]; then
2395 possible_xenkernels=`echo "$possible_kernels" | tr -s ' ' '\n' | grep -i "xen" | sort -u | tr '\n' ' '`
2396 noof_xenkernels=`CountItemsIn "$possible_xenkernels"`
2397 fi
[2829]2398 possible_kernels=`echo "$possible_kernels" | tr -s ' ' '\n' | grep -vi "xen" | sort -u | tr '\n' ' '`
2399 noof_kernels=`CountItemsIn "$possible_kernels"`
[747]2400 if [ "$noof_kernels" -eq "0" ] ; then
[3149]2401 LogAll "Could not find your kernel."
[925]2402 if [ -e "/boot/vmlinuz" ] ; then
[3149]2403 LogAll "INFO: Using /boot/vmlinuz as a last resort."
[925]2404 output=/boot/vmlinuz
[747]2405 else
[925]2406 output=""
2407 fi
[747]2408 elif [ "$noof_kernels" -eq "1" ] ; then
[2880]2409 kp=`echo "$possible_kernels" | sed s/' '//`
[2963]2410 LogFile "INFO: Your kernel is $kp (v$KERVERRUN)"
[2880]2411 output="$kp"
[747]2412 else
2413 for i in $possible_kernels ; do
[2880]2414 if [ "`echo $i | grep "$KERVERRUN"`" ]; then
[3149]2415 LogAll "INFO: OK, I used my initiative and found that "
2416 LogAll "INFO: $i is probably your kernel. "
[925]2417 output="$i"
[2858]2418 break
[925]2419 fi
[747]2420 done
[2858]2421 if [ ! -n "$output" ]; then
[2880]2422 if [ "`echo " $possible_kernels " | grep -F "/boot/vmlinuz " &> /dev/null`" ]; then
[2681]2423 output=/boot/vmlinuz
[2963]2424 LogFile "INFO: Schlomo, this one's for you."
[2681]2425 else
[2963]2426 LogFile "INFO: Two or more possible kernels found. You may specify any one of them and the "
2427 LogFile "INFO: boot disks will still work, probably. If one does not work, try another."
2428 LogFile "INFO: $possible_kernels"
[2880]2429 output=""
[2681]2430 fi
2431 fi
2432 fi
2433 if [ $KERNEL_IS_XEN = "yes" ]; then
2434 if [ "$noof_xenkernels" -eq "0" ]; then
2435 xenkernelpath=""
2436 elif [ "$noof_xenkernels" -eq "1" ]; then
2437 xenkernelpath=`echo "$possible_xenkernels" | sed s/' '//`
[2963]2438 LogFile "INFO: Your Xen kernel is $xenkernelpath (v$KERVERRUN)"
[925]2439 else
[2681]2440 for i in $possible_xenkernels ; do
[2880]2441 if [ "`echo $i | grep "$KERVERRUN"`" ]; then
[2963]2442 LogFile "INFO: OK, I used my initiative and found that "
2443 LogFile "INFO: $i is probably your Xen kernel. "
[2681]2444 xenkernelpath="$i"
[2858]2445 break
[2681]2446 fi
2447 done
[2858]2448 if [ ! -n "$xenkernelpath" ]; then
[2681]2449 new_possible_xenkernels=`echo "$possible_xenkernels" | tr -s ' ' '\n' | grep -E "^/boot" | sort -u | tr '\n' ' '`
2450 if [ ! -n "$new_possible_xenkernels" ]; then
2451 xenkernelpath=`echo $new_possible_xenkernels | tr -s ' ' '\n' | head -1`
[2963]2452 LogFile "INFO: Using $xenkernelpath"
[2681]2453 else
[2963]2454 LogFile "INFO: Two or more possible Xen kernels found. You may specify any one of them and the "
2455 LogFile "INFO: boot disks will still work, probably. If one does not work, try another."
2456 LogFile "INFO: $possible_xenkernels"
[2880]2457 output=""
[2681]2458 xenkernelpath=`echo $possible_xenkernels | tr -s ' ' '\n' | head -1`
[2963]2459 LogFile "INFO: Using $xenkernelpath"
[2681]2460 fi
2461 fi
[925]2462 fi
[2681]2463 if [[ -z "$xenkernelpath" || ! -f "$xenkernelpath" ]]; then
2464 Die "Cannot find Xen kernel $xenkernelpath, aborting"
2465 fi
[747]2466 fi
[3357]2467 #LogAll "TryToFindKernelPath found $output"
[2681]2468 echo "$output"
[747]2469}
2470
2471
2472TurnTgzIntoRdz() {
[3403]2473 local tgz_dir_fname rdz_fname tempfile old_pwd nodes kernelsize maxsize res currsize not_copied j k s w needed_modules_path d thelink templog
[925]2474
[747]2475 tgz_dir_fname=$1
2476 rdz_fname=$2
[1983]2477 kernelsize=$3
[1885]2478 maxsize=$(($BOOT_SIZE-$kernelsize))
[747]2479 maxsize=$(($maxsize*2)); # to allow for compression of 50%
[940]2480 tempfile=$MINDI_TMP/temp.rd
[3403]2481 res=0
2482 templog=$MINDI_TMP/$$.log
2483 > $templog
2484
[747]2485 echo -en "..."
2486 dd if=/dev/zero of=$tempfile bs=1k count=$ramdisk_size &> /dev/null || Die "Not enough room for temporary ramdisk (TurnTgzIntoRdz)"
2487 echo -en "..."
[2963]2488 LogFile "INFO: Creating ext2 filesystem on $tempfile"
[1764]2489 mke2fs -b 1024 -m 1 -i 2048 -F $tempfile >> $LOGFILE 2>> $LOGFILE || Die "Unable to create an ext2 file system on $tempfile"
[747]2490 echo -en "..."
2491 mkdir -p $mountpoint
2492 mount -t ext2 -o loop $tempfile $mountpoint || Die "Cannot loopmount $tempfile to $mountpoint! The reason may be missing support for loopfs or ext2 (or both) in the running kernel."
2493 echo -en "..."
2494 old_pwd=`pwd`
[2712]2495 cd "$mountpoint"
[2034]2496
[3248]2497 # Check whether /lib64 or /lib or /sbin or /bin is a link and if so explicitly create one in rootfs (Fedora 17 crazyness)
2498 for d in bin sbin lib lib64; do
2499 if [ -h "/$d" ]; then
2500 thelink=`readlink /$d`
2501 mkdir -p $mountpoint/$thelink || LogIt "ERROR: Unable to create $thelink in $mountpoint."
2502 mv $mountpoint/$d/* $mountpoint/$d/.??* $mountpoint/$thelink 2> /dev/null
2503 if [ -d "$mountpoint/$d" -a ! -h "$mountpoint/$d" ]; then
2504 rmdir $mountpoint/$d
2505 fi
2506 if [ ! -h $mountpoint/$d ]; then
2507 rm -f $mountpoint/$d 2> /dev/null
2508 (cd $mountpoint ; ln -s $thelink $d) || LogIt "ERROR: /$d is a symbolic link, but I couldn't create it in $mountpoint."
2509 fi
2510 fi
2511 done
[3357]2512
[3248]2513 LogFile "INFO: what is now in $mountpoint"
2514 ls -alR $mountpoint >> $LOGFILE
[3172]2515
[2963]2516 # Check files before copying to discover configuration issues or McAfee preventing mindi reading these files
[3357]2517 # copy from rootfs into mountpoint
[2963]2518 for f in $tgz_dir_fname/*; do
2519 if [ ! -r $f ]; then
2520 Die "ERROR: Unable to copy $f to the target dir. Check your installation or McAfee presence"
2521 else
[3357]2522 cp -af $f . 2>&1 >> $LOGFILE
[2963]2523 fi
2524 done
[3231]2525 (cd etc ; ln -sf bashrc profile ; ln -sf bashrc shrc ; ln -sf ../proc/mounts mtab ; ln -sf ../usr/sbin/init linuxrc)
2526 ln -sf usr/sbin/init linuxrc
[1914]2527
[747]2528 cd dev || Die "Can't cd to dev"
2529 tar -zxf dev-entries.tgz || Die "Cannot untar dev-entries.tgz"
2530 rm -f dev-entries.tgz
2531 cd ..
2532
2533 for w in insmod.static insmod.static.old ; do
[925]2534 s=`which $w 2> /dev/null`
2535 if [ -e "$s" ] ; then
[2156]2536 tar cf - -C / $s 2> /dev/null | tar xf -
[925]2537 fi
[747]2538 done
2539
2540 [ -e "/dev/.devfsd" ] && echo "/dev/.devfsd found" > tmp/USE-DEVFS
[2951]2541
[2438]2542 # Copy of files mandatory for ssh to automate mount if sshfs is used
[3358]2543 mkdir -p $mountpoint/.ssh $mountpoint/tmp
[3204]2544 cp -a ~root/.ssh/* $mountpoint/.ssh 2> /dev/null
[3241]2545 cat > $mountpoint/tmp/myssh << EOF
[2438]2546ssh -o StrictHostKeyChecking=no $*
2547EOF
2548 chmod 755 $mountpoint/tmp/myssh
2549
[2039]2550 # Copy of files mandatory for ld.so
[3204]2551 cp -a /etc/ld.so.c* $mountpoint/etc
[2039]2552
[2951]2553 # Handle the case where busybox and mount are dynamically linked
[3231]2554 file $MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | grep -q "dynamically"
[2951]2555 if [ $? -eq 0 ]; then
2556 # We want to use the real mount and all the supported variants (nfs, cifs, ...)
2557 rm -f bin/mount
2558 fi
2559
[3277]2560 # Copy of files from the minimal env needed as per the deplist.d/minimal.conf & udev.conf file (which includes all busybox deps)
[3081]2561 rm -f $MINDI_TMP/minimal.lis $MINDI_TMP/minimal2.lis
[3277]2562 for f in `cat $DEPLIST_DIR/minimal.conf $DEPLIST_DIR/udev.conf | grep -vE " *#.*|^#" | sort -u` ; do
2563 if [ -d $f ]; then
2564 for g in `find $f`; do
2565 echo $g >> $MINDI_TMP/minimal.lis
2566 LocateDeps $g >> $MINDI_TMP/minimal2.lis
2567 done
2568 else
2569 if [ -r $f ]; then
2570 echo $f >> $MINDI_TMP/minimal.lis
2571 LocateDeps $f >> $MINDI_TMP/minimal2.lis
2572 fi
[3081]2573 fi
[2951]2574 done
[3081]2575 for f in `cat $MINDI_TMP/minimal.lis` `sort -u $MINDI_TMP/minimal2.lis`; do
[3231]2576 mr-read-all-link $f >> $MINDI_TMP/minimal.lis
[2951]2577 done
2578 # Initial / are trucated by tar
[3014]2579 finallist=""
[3204]2580 # Remove directories from the list, as tar/cp will create them anyway
[3014]2581 # and it may hurt if /lib is in it as on Debian/Ubuntu
[3166]2582 # recent bash says that -d is true for a link to a dir !
[3014]2583 for f in `sort -u $MINDI_TMP/minimal.lis`; do
[3479]2584 if [ -e "$f" -a ! -d "$f" ] || [ -h $f ]; then
[3357]2585 # Do not overwrite files already in destination (avoid using option -n of cp not portable)
2586 if [ ! -e "$mountpoint/$f" ]; then
2587 finallist="$finallist $f"
2588 fi
[3014]2589 fi
2590 done
[3357]2591 rm -f $MINDI_TMP/minimal.lis $MINDI_TMP/minimal2.lis
2592
[3405]2593 #tar cf - $finallist 2> $templog | tar xf - || LogIt "WARNING: Problem in minimal analysis" $templog
[3403]2594 echo "INFO: Copy the minimal env with cp -a --parents $finallist -t $mountpoint" 2>&1 >> $templog
[3405]2595 cp -a --parents $finallist -t $mountpoint 2> $templog || LogIt "WARNING: Problem in minimal analysis" $templog
[3000]2596
[3357]2597 # In case target /bin dir still doesn't exist, create it before using it
2598 if [ ! -d $mountpoint/bin ]; then
2599 mkdir -p $mountpoint/bin
2600 fi
2601
2602 # For older distributions expecting /sbin/init provides it
[3479]2603 if [ ! -e "sbin/init" ]; then
[3357]2604 (cd sbin ; ln -sf ../usr/sbin/init .)
2605 fi
2606
[3000]2607 # To improve support for distribution scripts, we now prefer to use bash as the std shell. Also fixes #600
[3039]2608 ln -sf /bin/bash bin/sh
[3405]2609 LogFile "INFO: Using bash as default shell"
[2951]2610
2611 # Avoids an issue on some distro (RHEL5)
[2164]2612 rm -f $mountpoint/etc/ld.so.conf.d/kernelcap*
2613
[1914]2614 mkdir -p $mountpoint/tmp
[1724]2615 # Management of udev (which includes modprobe in rules)
[1759]2616 ps auxww | grep -v grep | grep -qw udevd
[1716]2617 if [ $? -eq 0 ]; then
[1914]2618 echo "udev device manager found" > $mountpoint/tmp/USE-UDEV
[3405]2619 LogFile "INFO: udev device manager found"
2620 tar cf - -C / /etc/udev 2> $templog | tar xf - || LogIt "ERROR: Problem in /etc/udev analysis" $templog
[3204]2621 # This avoids NIC remapping if on another machine at restore time on Debian/Ubuntu at least
2622 rm -f ./etc/udev/rules.d/[z]*[0-9][0-9][-_]persistent-net.rules
[2894]2623 # Do not do it if it's a link (Ubuntu 64 bits #503)
[3197]2624 if [ -e "/lib64/udev" ] && [ ! -h "/lib64" ] && [ ! -h "/lib64/udev" ]; then
[3405]2625 tar cf - -C / /lib64/udev 2> $templog | tar xf - || LogIt "ERROR: Problem in /lib64/udev analysis" $templog
[2894]2626 fi
[2895]2627 if [ -e "/lib32/udev" ] && [ ! -h "/lib32" ] && [ ! -h "/lib32/udev" ]; then
[3405]2628 tar cf - -C / /lib32/udev 2> $templog | tar xf - || LogIt "ERROR: Problem in /lib32/udev analysis" $templog
[2895]2629 fi
2630 if [ -e "/lib/udev" ] && [ ! -h "/lib" ] && [ ! -h "/lib/udev" ]; then
[3405]2631 tar cf - -C / /lib/udev 2> $templog | tar xf - || LogIt "ERROR: Problem in /lib/udev analysis" $templog
[2895]2632 fi
[3261]2633 if [ -e "/usr/lib/udev" ] && [ ! -h "/usr/lib" ] && [ ! -h "/usr/lib/udev" ]; then
[3405]2634 tar cf - -C / /usr/lib/udev 2> $templog | tar xf - || LogIt "ERROR: Problem in /usr/lib/udev analysis" $templog
[3261]2635 fi
[3489]2636 if [ -x /sbin/udevd ] || [ -x /usr/bin/udevd ] || [ -x /usr/lib/systemd/systemd-udevd ] || [ -x /lib/systemd/systemd-udevd ]; then
[2964]2637 lis2=`grep -Ev '^#' $DEPLIST_DIR/udev.conf`
[1781]2638 lis=""
2639 # Get only the files which exist in that list
[1815]2640 # and potentially their symlink structure
[1781]2641 for i in $lis2; do
[1815]2642 if [ -h $i ]; then
2643 j=$i
2644 while [ -h $j ]; do
2645 lis="$lis $j"
[3204]2646 j=`readlink -f $j`
[1815]2647 done
2648 lis="$lis $j"
2649 elif [ -f $i ]; then
[1781]2650 lis="$lis $i"
2651 fi
2652 done
2653 # And their deps
[1759]2654 LocateDeps $lis > $MINDI_TMP/udev.lis
2655 for i in $lis; do
2656 if [ "`echo $i | cut -c1`" = "/" ]; then
2657 j=`echo $i | cut -c2-`
[1998]2658 [ "$j" != "" ] && rm -f $j
[1759]2659 fi
[3204]2660 echo "$i" >> $MINDI_TMP/udev.lis
[1759]2661 done
[3257]2662 finallist=""
2663 # Remove directories from the list, as tar/cp will create them anyway
2664 # and it may hurt if /lib is in it as on Debian/Ubuntu
2665 # recent bash says that -d is true for a link to a dir !
2666 for f in `sort -u $MINDI_TMP/udev.lis`; do
[3479]2667 if [ -e "$f" -a ! -d "$f" ] || [ -h "$f" ]; then
[3357]2668 # Do not overwrite files already in destination (avoid using option -n of cp not portable)
2669 if [ ! -e "$mountpoint/$f" ]; then
2670 finallist="$finallist $f"
2671 fi
[3257]2672 fi
2673 done
[3405]2674 #tar cf - -C / $lis `sort -u $MINDI_TMP/udev.lis` 2> $templog | tar xf - || LogIt "ERROR: Problem in udev.lis analysis" $templog
[3403]2675 echo "INFO: Copying udev related files with cp -a --parents $finallist -t $mountpoint/" 2>&1 >> $templog
[3405]2676 cp -a --parents $finallist -t $mountpoint/ 2> $templog || LogIt "ERROR: Problem in udev.lis analysis" $templog
[1721]2677 rm -f $MINDI_TMP/udev.lis
[1720]2678 else
[2965]2679 LogAll "WARNING: udevd daemon not in standard place (/sbin or /usr/bin)"
[2963]2680 LogAll " mindi will use static devices which may cause problems"
[1914]2681 rm -f $mountpoint/tmp/USE-UDEV
[1720]2682 fi
[1716]2683 fi
[1786]2684
[2882]2685 # Management of potential HW info (ProLiant only at the moment)
[1880]2686 rm -rf $MINDI_CACHE/bkphw
2687 mindi-bkphw $MINDI_CACHE $MINDI_CONF | tee -a $LOGFILE
2688 if [ -d $MINDI_CACHE/bkphw ]; then
[2963]2689 LogIt "INFO: Hardware Information found and saved ..."
[1880]2690 cp -rp $MINDI_CACHE/bkphw .
2691 if [ -f $MINDI_CACHE/tools.files ]; then
2692 lis=`grep -Ev '^#' $MINDI_CACHE/tools.files`
[1863]2693 LocateDeps $lis > $MINDI_TMP/tools.lis
[3405]2694 tar cf - $lis `sort -u $MINDI_TMP/tools.lis` 2> $templog | tar xf - || LogIt "ERROR: Problem in tools.lis analysis" $templog
[1863]2695 fi
[1880]2696 if [ -f $MINDI_CACHE/mindi-rsthw ]; then
2697 mv -f $MINDI_CACHE/mindi-rsthw .
[1761]2698 chmod 755 ./mindi-rsthw
2699 fi
[1880]2700 rm -f $MINDI_TMP/tools.lis $MINDI_CACHE/tools.files
[1761]2701 fi
2702
[2183]2703 # Management of perl scripts delivered needed at restore time
[3403]2704 LogIt "INFO: Analyzing perl modules dependencies"
[3405]2705 mindi-get-perl-modules `cat $MINDI_CONF/perl-scripts` /usr/[s]*bin/mr-* 2> $templog > $MINDI_TMP/perl.lis || LogIt "ERROR: Problem in mindi-get-perl-modules" $templog
2706 LogFile "DBG4: Perl Modules found:"
2707 LogFile "-------------------------"
[3403]2708 cat $MINDI_TMP/perl.lis >> $LOGFILE
[3405]2709 LogFile "-------------------------"
2710 tar cf - `cat $MINDI_TMP/perl.lis` 2> $templog | tar xf - || LogIt "ERROR: Problem in perl scripts analysis" $templog
[2183]2711
[1885]2712 for w in cdrom groovy-stuff ; do
[747]2713 mkdir -p mnt/$w
2714 done
2715
[3405]2716 tar cf - -C / /dev/fd0*[1,2][4,7,8]* 2> $templog | tar xf - || LogIt "ERROR: Problem in fd dev analysis" $templog
[1721]2717
[747]2718 echo -en "..."
[3231]2719 cd /
[1885]2720
2721 needed_modules=""
[1993]2722 list_of_groovy_mods="$CDROM_MODS $FORCE_MODS"
[1885]2723
[3270]2724 if [ -e "$MINDI_TMP/NETFS-SERVER-MOUNT" ] ; then
[747]2725 # For PXE boot
2726 list_of_groovy_mods="$list_of_groovy_mods $NET_MODS"
2727 fi
[1727]2728 for i in $DENY_MODS; do
[2963]2729 LogFile "INFO: Removing $i from the list of modules to load"
[1727]2730 list_of_groovy_mods=`echo ${list_of_groovy_mods} | tr ' ' '\n' | grep -Ev "^${i}$" | tr '\n' ' '`
2731 done
2732
[3253]2733 if [ "${kernelname}" != "" ]; then
2734 needed_modules_path=lib/modules/${kernelname}
[3257]2735 mkgmopt="-k ${kernelname}"
[3253]2736 else
2737 needed_modules_path=lib/modules/$KERVERRUN
2738 mkgmopt="-k $KERVERRUN"
2739 fi
[1914]2740
[3253]2741 [ -e "$needed_modules_path" ] || LogIt "WARNING: path $needed_modules_path does not exist.\n If you're not using a modular kernel then mindi won't probably work."
2742 needed_modules=`mr-kernel-get-modules $mkgmopt $list_of_groovy_mods`
2743
[3257]2744 LogFile "INFO: Adding $needed_modules to the rootfs with $mkgmopt"
[3405]2745 cp --parents -aL $needed_modules $mountpoint/ 2> $templog || LogIt "ERROR: Unable to copy modules to $mountpoint" $templog
[3253]2746
2747 # Uncompress modules if not using udev and native modprobe
2748 if [ ! -f $mountpoint/tmp/USE-UDEV ]; then
2749 for i in $needed_modules; do
2750 if [ "`echo "$i" | grep -E ".gz$"`" ]; then
[1727]2751 gunzip -f $mountpoint/$i
[1815]2752 fi
[3253]2753 if [ "`echo "$i" | grep -E ".bz$"`" ]; then
2754 bunzip2 -f $mountpoint/$i
2755 fi
2756 if [ "`echo "$i" | grep -E ".xz$"`" ]; then
2757 unxz -f $mountpoint/$i
2758 fi
2759 LogFile "INFO: Uncompressing $i"
2760 done
2761 fi
[1815]2762
[2964]2763 # Also copy modules.* in case of udev so that normal modprobe works
[3405]2764 tar cf - -C / /$needed_modules_path/modules.* 2> $templog | (cd "$mountpoint" ; tar xf -) || LogIt "ERROR: Unable to copy modules.* to $mountpoint" $templog
[1815]2765
[2680]2766 # Copy FW in case some drivers needs it
[3163]2767 for d in "/lib" "/usr/lib"; do
[3201]2768 if [ -d "$d/firmware" -a ! -h $d ]; then
[3166]2769 cp -a "$d/firmware" "$mountpoint/$d"
[3163]2770 fi
2771 done
[2680]2772
[3163]2773 # Copy multipath dynamic libraries in case multipath is used (RHEL 6.4 and later)
2774 for d in "/lib" "/usr/lib" "/lib64" "/usr/lib64"; do
[3201]2775 if [ -d "$d/multipath" -a ! -h $d ]; then
[3166]2776 cp -a "$d/multipath" "$mountpoint/$d"
[3163]2777 fi
2778 done
2779
[3326]2780 # Ensure that with mindi-busybox 1.21, the links also exists under /bin for older distro which need it for their scripts
[3479]2781 (cd $mountpoint/usr/bin ; for i in `ls`; do if [ ! -e "$mountpoint/bin/$i" ]; then (cd $mountpoint/bin ; ln -sf ../usr/bin/$i .); fi; done)
[3324]2782
[2913]2783 # Copy an additional ProLiant tool for OBDR support
2784 if [ -f $MINDI_TMP/OBDR ]; then
[3117]2785 found=0
[2913]2786 if [ -x /usr/bin/hpsa_obdr_mode ]; then
2787 mkdir -p $mountpoint/usr/bin
2788 cp -a /usr/bin/hpsa_obdr_mode $mountpoint/usr/bin
[3117]2789 LogIt "INFO: Copying /usr/bin/hpsa_obdr_mode to ramdisk for improved Smart Array OBDR support"
2790 found=1
2791 fi
2792 if [ -x /usr/bin/sg_wr_mode ]; then
2793 mkdir -p $mountpoint/usr/bin
[3135]2794 lis="/usr/bin/sg_map /usr/bin/sg_inq /usr/bin/sg_reset /usr/bin/rev"
[3118]2795 LocateDeps $lis > $MINDI_TMP/obdr.lis
[3405]2796 (cd $mountpoint ; tar cf - $lis -C / `sort -u $MINDI_TMP/obdr.lis` 2> $templog | tar xf - || LogIt "ERROR: Problem in obdr.lis analysis" $templog)
[3118]2797 LogIt "INFO: Copying /usr/bin/sg_reset to ramdisk for improved SCSI OBDR support"
[3117]2798 found=1
2799 fi
2800 if [ $found -eq 0 ]; then
2801 LogAll "WARNING: You're using OBDR mode without having the /usr/bin/hpsa_obdr_mode nor the /usr/bin/sg_wr_mode tool"
[2913]2802 LogAll " This may lead to a tape not going back to sequential mode after OBDR boot"
2803 fi
2804 fi
2805
[1885]2806 if [ ! -e "/sbin/devfsd" ] || [ "$kernelpath" = "$MINDI_LIB/vmlinuz" ] ; then
[2963]2807 LogFile "INFO: Deleting devfsd daemon from ramdisk"
[2995]2808 [ ! -e "/sbin/devfsd" ] && LogFile " ...because /sbin/devfsd not found"
[747]2809 rm -f $mountpoint/sbin/devfsd
2810 fi
[2712]2811 cd "$old_pwd"
[747]2812 [ "$TAPEDEV" ] && echo -en "$TAPEDEV" > $mountpoint/tmp/TAPEDEV-LIVES-HERE
[1885]2813 if [ _"$MONDO_SHARE" != _"" ]; then
[3278]2814 MakeMondoConfigFile $mountpoint/tmp/$MRCFG
2815 cp -f $mountpoint/tmp/$MRCFG $MINDI_TMP 2>> $LOGFILE || Die "Cannot copy $MRCFG to ramdisk"
[2092]2816 cp -f $MINDI_TMP/mountlist.txt $mountpoint/tmp/ 2>> $LOGFILE || Die "Cannot copy mountlist to ramdisk"
[747]2817 echo -en "$FILES_IN_FILELIST" > $mountpoint/tmp/FILES-IN-FILELIST
2818 echo -en "$LAST_FILELIST_NUMBER" > $mountpoint/tmp/LAST-FILELIST-NUMBER
2819 fi
[3310]2820
2821 # Create module list to load at restore time
2822 rm -f $mountpoint/tmp/modules
2823 for m in $CDROM_MODS; do
2824 echo $m >> $mountpoint/tmp/modules
2825 done
2826
[3427]2827 # copy boot stuff now generated in PrepareDataDiskImage
2828 if [ "$BOOT_TYPE" = "UEFI" ]; then
2829 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./EFI)
2830 else
2831 (cd $mountpoint ; tar xfz $MINDI_CACHE/all.tar.gz ./boot)
2832 fi
2833
[747]2834 mkdir -p $mountpoint/proc
[2963]2835 LogFile "---------------------------"
[3372]2836 LogFile "Size of initial ramdisk:"
2837 LogFile "---------------------------"
2838 (cd "$mountpoint" ; du -sh .) >> $LOGFILE
2839 LogFile "---------------------------"
[2963]2840 LogFile "Content of initial ramdisk:"
2841 LogFile "---------------------------"
[2712]2842 (cd "$mountpoint" ; ls -Rla ) >> $LOGFILE
[2963]2843 LogFile "---------------------------"
[2438]2844
[1230]2845 # Determine what filesystem to use for initrd image
[2963]2846 LogFile "INFO: Call GetInitrdFilesystemToUse() with parameter ${kernelpath} to get filesystem to use for initrd."
[1230]2847 gvFileSystem=`GetInitrdFilesystemToUse ${kernelpath}`
2848 [ -z gvFileSystem ] && Die "GetFilesystemToUse() failed. Terminating."
[3008]2849 if [ "$gvFileSystem" = "ext2fs" ] || [ "$gvFileSystem" = "ext3fs" ] || [ "$gvFileSystem" = "ext4fs" ]; then
[1230]2850 # say what will be used
[2963]2851 LogFile "INFO: Creating an $gvFileSystem initrd image..."
[1230]2852 # kernel expects linuxrc in ext2 filesystem
[3231]2853 ( cd "$mountpoint" && ln -sf usr/sbin/init linuxrc )
[1230]2854 # unmount loop filesystem and create image file using the standard approach
2855 umount $mountpoint || Die "Cannot unmount $tempfile"
[1764]2856 dd if=$tempfile bs=1k 2> /dev/null > ${rdz_fname}.tmp 2> /dev/null
[3008]2857 if [ "$gvFileSystem" = "ext4fs" ] && [ -x "/sbin/tune4fs" ]; then
2858 bs=`/sbin/tune4fs -l ${rdz_fname}.tmp | grep -E '^Block size:' | cut -d: -f2 | sed 's/^ *//'`
2859 else
2860 bs=`tune2fs -l ${rdz_fname}.tmp | grep -E '^Block size:' | cut -d: -f2 | sed 's/^ *//'`
2861 fi
[2564]2862 MINDI_ADDITIONAL_BOOT_PARAMS="$MINDI_ADDITIONAL_BOOT_PARAMS ramdisk_blocksize=$bs"
[1799]2863 gzip -c9 ${rdz_fname}.tmp > $rdz_fname
[1764]2864 rm -f ${rdz_fname}.tmp
[1230]2865 # log that we are done
[2995]2866 LogFile " ...done."
[2390]2867 elif [ "$gvFileSystem" = "initramfs" ]; then
[1230]2868 # say what will be used
[2963]2869 LogFile "INFO: Creating a gzip'ed cpio (AKA initramfs) initrd image..."
[1230]2870 # make sure that cpio is there
2871 which cpio &> /dev/null; [ $? -eq 0 ] || Die "cpio not found. Please install package cpio and try again."
2872 # go into filesystem
[2712]2873 cd "$mountpoint"
[1230]2874 # kernel expects init in cpio filesystem
[3324]2875 ln -sf usr/sbin/init init
[1230]2876 # create cpio image file and unmount loop filesystem
[1929]2877 find . -print | cpio -o -H newc | gzip -9 > $rdz_fname 2> /dev/null
[2712]2878 cd "$old_pwd"
[1230]2879 umount $mountpoint || Die "Cannot unmount $tempfile"
2880 # log that we are done
[3368]2881 LogFile " ...done."
[2390]2882 else
[1230]2883 Die "Filesystem $gvFileSystem not supported for initrd image. Terminating."
[2390]2884 fi
2885
[747]2886 if [ "$res" -eq "0" ] ; then
2887 echo -en "..."
2888 else
2889 echo -en "\rMade an rdz WITH ERRORS. \n"
2890 fi
2891 return 0
2892}
2893
2894
2895##############################################################################
[1021]2896#----------------------------------- Main -----------------------------------#
[747]2897##############################################################################
2898
[1885]2899# Now we can create what we need
2900mkdir -p $MINDI_TMP
[747]2901
[2995]2902# --nolog needs to be first, and is used in analyze-my-lvm
2903if [ "$1" = "--nolog" ] ; then
2904 shift
2905 LOGFILE=/dev/stderr
2906else
2907 > $LOGFILE
2908fi
[1885]2909if [ "$1" = "--printvar" ] ; then
2910 shift
2911 if [ _"$1" != _"" ] ; then
2912 set | grep -Ew "^$1" | cut -d= -f2
2913 fi
[2183]2914 exit 0
[1885]2915fi
2916
[2963]2917LogFile "mindi v$MINDI_VERSION"
2918LogFile "$ARCH architecture detected"
2919LogFile "mindi called with the following arguments:"
[2978]2920echo "$@">> $LOGFILE
[2963]2921LogFile "Start date : `date`"
2922LogFile "-----------------------------"
[747]2923
[3149]2924[ -e "/sbin/mkdosfs" ] && [ ! -e "/sbin/mkfs.vfat" ] && LogAll "/sbin/mkfs.vfat is missing!"
[747]2925
[1010]2926# Log some capital variables
2927[ "$MINDI_PREFIX" = "XXX" ] && Die "Mindi has not been installed correctly."
[3149]2928[ "$MINDI_CONF" = "YYY" ] && Die "Mindi has not been installed correctly."
[2963]2929LogFile "MONDO_SHARE = $MONDO_SHARE"
2930LogFile "MINDI_LIB = $MINDI_LIB"
2931LogFile "MINDI_SBIN = $MINDI_SBIN"
2932LogFile "MINDI_CONF = $MINDI_CONF"
[3388]2933# Purge from potential old run
2934if [ _"$MINDI_CACHE" = _"" ]; then
2935 Die "MINDI_CACHE undefined"
2936else
2937 LogFile "MINDI_CACHE = $MINDI_CACHE"
2938fi
2939
[1885]2940if [ -f $MINDI_CONFIG ]; then
[2963]2941 LogFile "-----------------------------"
2942 LogFile " Mindi configuration file "
2943 LogFile "-----------------------------"
[1885]2944 grep -Ev '^#' $MINDI_CONFIG >> $LOGFILE
[2963]2945 LogFile "-----------------------------"
[1885]2946fi
[2995]2947LogFile "In Mindi"
2948LogFile "--------"
2949LogFile "EXTRA_SPACE = $EXTRA_SPACE"
2950LogFile "BOOT_SIZE = $BOOT_SIZE"
2951LogFile "--------"
[1010]2952
[747]2953trap AbortHere SIGTERM SIGHUP SIGQUIT SIGKILL SIGABRT SIGINT
[1010]2954
2955# Sanity checks
2956which which > /dev/null 2> /dev/null || Die "Please install 'which'."
2957which strings > /dev/null 2> /dev/null || Die "Please install binutils and libbinutils; you have no 'strings' executable."
2958which gawk > /dev/null 2> /dev/null || Die "Gawk is missing from your computer. Please install gawk. You may find the package on Debian's website. How did I know you're running Debian? Because only Debian would be stupid enough not to include gawk in your distribution."
2959which gawk > /dev/null 2> /dev/null && AWK=`which gawk 2>/dev/null` || AWK="`which awk 2>/dev/null`"
2960if which awk &> /dev/null ; then
2961 if ! which gawk &> /dev/null ; then
[2963]2962 LogIt "INFO: You have awk but not gawk.\nPlease note that mindi works fine with a _sane_ awk binary.\nIf your awk binary misbehaves then please contact your vendor\nor distribution's mailing list for technical support.\n"
[1010]2963 fi
2964fi
2965which mke2fs > /dev/null 2> /dev/null || Die "Please put mke2fs in system path"
[2222]2966[ ! -e "$FDISK" ] && Die "Cannot find $FDISK"
[1010]2967
[3005]2968[ "`echo $KERVERRUN | grep -E "2\.4\.[0-6]" | grep -vE "2\.4\.[0-9][0-9]"`" != "" ] && echo "WARNING! Your kernel may have buggy loopfs code. Consider upgrading to 2.4.7"
[1010]2969
2970# Update the PATH variable if incomplete
2971if [ -e "/sbin/mkfs" ] && ! which mkfs &> /dev/null ; then
2972 PATH=$PATH:/sbin:/usr/sbin
2973 export PATH
[2963]2974 LogFile "INFO: Your PATH did not include /sbin or /usr/sbin. I have fixed that, temporarily."
2975 LogFile "INFO: However, you may wish to ask your vendor to provide a permanent fix..."
[3255]2976 LogFile "INFO: Or you might like to call 'su -' instead of 'su', for example."
[1010]2977fi
2978
[1737]2979if ! which mkfs.vfat 1> /dev/null 2> /dev/null ; then
[3368]2980 Die "mkfs.vfat missing from your filesystem - please install your dosfstools RPM or DEB package. Perhaps your PATH environmental variable is broken, too?"
[1010]2981fi
2982
[3149]2983### TODO
[747]2984### Fix as it's not mandatory on ia64
2985if [ "$ARCH" = "ia64" ] ; then
[1010]2986 if which elilo &> /dev/null ; then
2987 LILO_EXE=elilo
2988 else
[2024]2989 LILO_EXE=`which false 2> /dev/null`
[1010]2990 fi
[747]2991else
2992 FindIsolinuxBinary
2993fi
2994trap "Aborted" SIGTERM
2995DONE="\r\t\t\t\t\t\t\t\tDone. "
2996kernelpath=""
[1010]2997MONDO_ROOT=/var/cache/mondo
[747]2998mkdir -p $MONDO_ROOT
2999
3000if [ -d "/proc/lvm" ]; then
3001 # LVM v1
3002 LVMCMD=""
3003 LVM="v1"
3004elif [ -d "/dev/mapper" ]; then
3005 # LVM v2
3006 LVMCMD="lvm"
3007 LVM="v2"
3008else
3009 LVM="false"
3010fi
[3149]3011
3012if [ -e "/proc/cmdline" ]; then
3013 CMDLINE="/proc/cmdline"
3014elif [ -e "/tmp/cmdline" ]; then
3015 CMDLINE="/tmp/cmdline"
3016else
3017 CMDLINE="/dev/null"
3018fi
3019
[2963]3020LogFile "INFO: LVM set to $LVM"
3021LogFile "----------"
3022LogFile "mount result:"
3023LogFile "-------------"
[1230]3024mount >> $LOGFILE
[3479]3025if [ -e "/etc/raidtab" ]; then
[2963]3026 LogFile "-------------"
3027 LogFile "/etc/raidtab content:"
3028 LogFile "-------------"
[1315]3029 cat /etc/raidtab >> $LOGFILE
[3077]3030else
[3073]3031 LogFile "No file /etc/raidtab"
[1315]3032fi
[3479]3033if [ -e "/etc/mdadm.conf" ]; then
[2981]3034 LogFile "-------------"
3035 LogFile "/etc/mdadm.conf content:"
3036 LogFile "-------------"
3037 cat /etc/mdadm.conf >> $LOGFILE
[3077]3038else
[3149]3039 LogFile "-------------"
[3073]3040 LogFile "No file /etc/mdadm.conf"
[2981]3041fi
[2963]3042LogFile "-------------"
[3149]3043LogFile "cat $CMDLINE"
[2963]3044LogFile "-------------"
[3149]3045cat $CMDLINE >> $LOGFILE
[2963]3046LogFile "-------------"
3047LogFile "cat /proc/swaps:"
3048LogFile "-------------"
[2014]3049cat /proc/swaps >> $LOGFILE
[2963]3050LogFile "-------------"
[3479]3051if [ -e "/proc/mdstat" ]; then
[3073]3052 LogFile "cat /proc/mdstat:"
3053 LogFile "-------------"
3054 cat /proc/mdstat >> $LOGFILE
[3077]3055else
[3073]3056 LogFile "No pseudo file /proc/mdstat"
3057fi
[2981]3058LogFile "-------------"
[2963]3059LogFile "cat /proc/partitions:"
3060LogFile "-------------"
[2015]3061cat /proc/partitions >> $LOGFILE
[2963]3062LogFile "-------------"
3063LogFile "cat /proc/filesystems:"
3064LogFile "-------------"
[2015]3065cat /proc/filesystems >> $LOGFILE
[2963]3066LogFile "-------------"
3067LogFile "lsmod result:"
3068LogFile "-------------"
[1021]3069lsmod >> $LOGFILE
[2431]3070MODULES="`cat /proc/modules | $AWK '{print $1}'`"
[1531]3071if [ -x /usr/sbin/esxcfg-module ]; then
[2963]3072 LogFile "-------------"
3073 LogFile "INFO: VMWare ESX server detected - Enabling dedicated support"
3074 LogFile "-------------"
3075 LogFile "VMWare modules"
3076 LogFile "-------------"
[1531]3077 /usr/sbin/esxcfg-module -l >> $LOGFILE
[2431]3078 MODULES="$MODULES `/usr/sbin/esxcfg-module -l | $AWK '{print $1}'`"
[1497]3079fi
[3149]3080LogFile "-------------"
[2963]3081LogFile "FORCE_MODS:"
3082LogFile "-------------"
[3065]3083LogFile "$FORCE_MODS"
[2963]3084LogFile "-------------"
3085LogFile "DENY_MODS:"
3086LogFile "-------------"
[3065]3087LogFile "$DENY_MODS"
[2963]3088LogFile "-------------"
3089LogFile "df result:"
3090LogFile "----------"
[3117]3091df -aT >> $LOGFILE
[2963]3092LogFile "-------------"
[3117]3093LogFile "df -i result:"
3094LogFile "----------"
3095df -i >> $LOGFILE
3096LogFile "-------------"
3097if [ -r /boot/grub/menu.lst ]; then
3098 LogFile "-------------"
3099 LogFile "INFO: /boot/grub/menu.lst content"
3100 LogFile "-------------"
3101 cat /boot/grub/menu.lst >> $LOGFILE
[3123]3102 LogFile "-------------"
[3117]3103fi
[3123]3104if [ -r /boot/grub/grub.conf ]; then
[3117]3105 LogFile "-------------"
[3123]3106 LogFile "INFO: /boot/grub/grub.conf content"
3107 LogFile "-------------"
3108 cat /boot/grub/grub.conf >> $LOGFILE
3109 LogFile "-------------"
3110fi
3111if [ -r /boot/grub/grub.cfg ]; then
3112 LogFile "-------------"
3113 LogFile "INFO: /boot/grub/grub.cfg content"
3114 LogFile "-------------"
3115 cat /boot/grub/grub.cfg >> $LOGFILE
3116 LogFile "-------------"
3117fi
3118if [ -r /boot/grub/device.map ]; then
3119 LogFile "-------------"
[3117]3120 LogFile "INFO: /boot/grub/device.map content"
3121 LogFile "-------------"
[3123]3122 cat /boot/grub/device.map >> $LOGFILE
3123 LogFile "-------------"
[3117]3124fi
3125if [ -r /etc/lilo.conf ]; then
3126 LogFile "-------------"
3127 LogFile "INFO: /etc/lilo.conf content"
3128 LogFile "-------------"
3129 cat /etc/lilo.conf >> $LOGFILE
3130fi
[3378]3131if [ -d /boot/efi ]; then
[3425]3132 gcf=`find /boot/efi -name 'grub.c*'`
[3384]3133 if [ _"$gcf" = _"" ]; then
[3425]3134 LogFile "Found a /boot/efi directory without a grub config file in it"
[3384]3135 else
3136 LogFile "-------------"
3137 LogFile "INFO: $gcf content"
3138 LogFile "-------------"
3139 cat $gcf >> $LOGFILE
3140 LogFile "-------------"
3141 fi
[3378]3142fi
3143
[3146]3144LogFile "Full fdisk info"
3145LogFile "---------------"
3146$FDISK -l >> $LOGFILE
3147LogFile "----------------"
[747]3148
[1723]3149# Compute libata version
[2649]3150laver=`modinfo libata 2> /dev/null | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/ *//g' 2> /dev/null`
[1723]3151# If libata v2 is used then remove ide-generic as it will perturbate boot
[1726]3152if [ "`echo $MODULES | grep libata`" ]; then
[1727]3153 if [ "$laver" = "2" ]; then
[1726]3154 DENY_MODS="$DENY_MODS ide-generic"
[2963]3155 LogFile "INFO: ide-generic removed from module list as your system uses libata v2+"
3156 LogFile "-------------"
[1726]3157 fi
[1723]3158fi
3159
[2963]3160# Check for McAfee which disturbs the access to some files (tgz in articular)
[2976]3161if [ "x`cat /proc/linuxshield/enabled 2>/dev/null`" = "x1" ]; then
[2963]3162 LogFile "WARNING: McAfee LinuxShield is enabled. McAfee might block access to certain special files."
3163 LogFile "WARNING: Check in /var/opt/NAI/LinuxShield/etc/nailsd.cfg for 'nailsd.profile.OAS.action.error: Block'"
3164 LogFile "WARNING: You have two options:"
3165 LogFile "WARNING: - Exclude all directories with special files (check McAfee System Events Log)"
3166 LogFile "WARNING: - Disable the scanner during the backup"
3167fi
3168
[2457]3169# Check for ISO_CMD command
3170if [ ! -x $ISO_CMD ]; then
[2963]3171 LogFile "NOTE: No CD image (ISO file) utility found"
[2457]3172fi
3173
[747]3174FLOPPY_WAS_MOUNTED=""
3175for mtpt in /media/floppy /mnt/floppy /floppy ; do
3176 if mount | grep -w $mtpt &> /dev/null ; then
3177 FLOPPY_WAS_MOUNTED="$FLOPPY_WAS_MOUNTED $mtpt"
3178 umount $mtpt
3179 fi
3180done
3181
[1684]3182#
3183# If we have a USB device we need to store info
3184# and remove it from the parameters line
3185#
[747]3186if [ "$#" -ne "0" ] ; then
[1684]3187 if [ "$1" = "--usb" ] ; then
3188 shift
3189 USBDEVICE=$1
3190 if [ _"$USBDEVICE" = _"" ]; then
3191 Die "No USB device specified"
3192 fi
3193 shift
3194 fi
3195fi
3196
3197if [ "$#" -ne "0" ] ; then
[747]3198 if [ "$1" = "--findkernel" ] ; then
[2880]3199 resk=`TryToFindKernelPath`
[1336]3200 # Avoids logfile content for mondo
3201 export MONDO_SHARE=""
[2880]3202 if [ "$resk" = "" ] ; then
[2838]3203 if [ $KERNEL_IS_XEN = "yes" ]; then
3204 echo "$xenkernelpath"
[2963]3205 LogFile "INFO: xenkernelpath = $xenkernelpath"
[2860]3206 MindiExit 0
[2838]3207 else
[2860]3208 MindiExit -1
[2838]3209 fi
[747]3210 else
[2880]3211 echo "$resk"
[2963]3212 LogFile "INFO: kernelpath = $resk"
[2860]3213 MindiExit 0
[747]3214 fi
[1720]3215 elif [ "$1" = "--locatedeps" ] ; then
3216 [ ! "$2" ] && Die "Please specify the binary to look at"
[2438]3217 LocateDeps $*
[1720]3218 # Avoids logfile content for mondo
3219 export MONDO_SHARE=""
3220 MindiExit $?
[1815]3221 elif [ "$1" = "--readalllink" ] ; then
3222 [ ! "$2" ] && Die "Please specify the binary to look at"
3223 # Avoids logfile content for mondo
3224 export MONDO_SHARE=""
[3231]3225 mr-read-all-link $2
[1815]3226 MindiExit $?
[2731]3227 elif [ "$1" = "--makemessage" ] ; then
[2948]3228 MakeMessageFile | cut -c1-80
[2731]3229 MindiExit 0
[747]3230 elif [ "$1" = "--makemountlist" ] ; then
3231 [ ! "$2" ] && Die "Please specify the output file"
3232 MakeMountlist $2
[2432]3233 CheckMountlist $2
[1336]3234 # Avoids logfile content for mondo
3235 export MONDO_SHARE=""
[925]3236 MindiExit $?
3237 elif [ "$1" = "-V" ] || [ "$1" = "-v" ] || [ "$1" = "--version" ] || [ "$1" = "-version" ] ; then
3238 echo "Mindi v$MINDI_VERSION"
[1336]3239 # Avoids logfile content for mondo
3240 export MONDO_SHARE=""
[925]3241 MindiExit 0
[747]3242 elif [ "$#" -ge "9" ] && [ "$1" = "--custom" ] ; then
[940]3243 MONDO_TMP=$2
3244 # Change MINDI_TMP for the one provided by mondo
3245 # So that it can get back the built files
[2153]3246 if [ _"$MONDO_TMP" = _"" ]; then
3247 Die "MONDO_TMP is empty, aborting"
3248 fi
3249 if [ _"$MONDO_TMP" = _"/" ]; then
3250 Die "MONDO_TMP is /, aborting"
3251 fi
[2092]3252 mv $MINDI_TMP/* $MINDI_TMP/.??* $MONDO_TMP 2>> $LOGFILE
[1010]3253 rmdir $MINDI_TMP
[1486]3254 export MINDI_TMP=$MONDO_TMP
[953]3255 mkdir -p $MINDI_TMP
[2238]3256
[1696]3257 # This is the scratch dir in mondo - subdir images
[1880]3258 MINDI_CACHE=$3
[3388]3259 LogFile "MINDI_CACHE = $MINDI_CACHE"
[2238]3260
[925]3261 kernelpath=$4; [ "$kernelpath" = "(null)" ] && kernelpath=""
[2681]3262 [ "$kernelpath" = "" ] && kernelpath=`TryToFindKernelPath`
3263
[747]3264###
3265### Sq-Modification...
3266### Attempt to locate kernel specific module path
3267### if module path is found then use it other wise use uname -r to set it...
3268###
[2629]3269 if [ $KERNEL_IS_XEN = "yes" ]; then
[3149]3270 LogAll "INFO: xenkernelpath = $xenkernelpath"
[2629]3271 fi
[2657]3272 kernelname=`echo $kernelpath | cut -d'-' -f2- | sed 's/.[bg]z[2]*$//'`
[3231]3273 if [ ! -d "/lib/modules/$kernelname" ]; then
[3149]3274 LogAll "WARNING: Module path for ${kernelpath} not found..."
3275 LogAll " using running kernel\'s modules."
[2292]3276 kernelname=$KERVERRUN
[3149]3277 else
[3426]3278 LogAll "INFO: Using modules for kernel: ${kernelname}"
[747]3279 fi
[3149]3280 LogAll "INFO: kernelname = $kernelname"
3281 LogAll "INFO: kernelpath = $kernelpath"
[747]3282###
3283### end of Sq-Modification
3284###
[925]3285 TAPEDEV=$5
3286 TAPESIZE=$6
3287 FILES_IN_FILELIST=$7
3288 USE_LZO=$8
3289 CDRECOVERY=$9
[747]3290 if [ "${10}" = "(null)" ] || [ "${10}" = "" ] ; then
3291 IMAGE_DEVS=""
3292 else
3293 IMAGE_DEVS="`echo "${10}" | tr '|' ' '`"
3294 fi
[925]3295 if [ "${11}" ] ; then
3296 LILO_OPTIONS=""
[3149]3297 # LogAll "INFO: LILO will use conservative settings, to be compatible with older BIOSes."
[925]3298 fi
3299 LAST_FILELIST_NUMBER=${12}
[747]3300 ESTIMATED_TOTAL_NOOF_SLICES=${13}
[2564]3301 export MINDI_EXCLUDE_DEVS="${14}"
[747]3302 USE_COMP="${15}"
3303 USE_LILO="${16}"
[925]3304 USE_STAR="${17}"
3305 INTERNAL_TAPE_BLOCK_SIZE="${18}"
[747]3306 DIFFERENTIAL="${19}"
[998]3307 USE_GZIP="${20}"
[3353]3308 USE_LZMA="${21}"
3309 NOT_BOOT="${22}"
[3397]3310 BOOT_TYPE="${23}"
[747]3311 [ "$USE_COMP" = "" ] && USE_COMP=yes
[998]3312 [ "$USE_GZIP" = "" ] && USE_GZIP=no
[3353]3313 [ "$USE_LZMA" = "" ] && USE_LZMA=no
[747]3314 [ "$NOT_BOOT" = "" ] && NOT_BOOT=no
[2963]3315 [ "$TAPEDEV" ] && LogIt "INFO: This is a tape-based backup. Fine."
[1696]3316 # MONDO_ROOT is the real scratchdir
[1880]3317 MONDO_ROOT=`echo $MINDI_CACHE | sed 's/\(.*\)\/.*/\1/'`
[938]3318 if [ _"$MONDO_ROOT" != _"" ]; then
3319 mkdir -p $MONDO_ROOT
3320 else
3321 Die "MONDO_ROOT is undefined"
3322 fi
[747]3323 else
[3149]3324 LogScreen "Syntax: mindi (--custom ....)"
[925]3325 MindiExit -1
[747]3326 fi
3327fi
[2238]3328
3329if [ _"$MINDI_CACHE" != _"" ]; then
3330 rm -rf $MINDI_CACHE/* 2> /dev/null
3331 mkdir -p $MINDI_CACHE
3332fi
3333
[747]3334[ "$CDRECOVERY" = "yes" ] || CDRECOVERY=no
3335
[1684]3336if [ _"$MONDO_SHARE" = _"" ]; then
[963]3337 LogIt "Mindi Linux mini-distro generator v$MINDI_VERSION"
3338 LogIt "Latest Mindi is available from http://www.mondorescue.org"
3339 LogIt "BusyBox sources are available from http://www.busybox.net"
[747]3340 LogIt "------------------------------------------------------------------------------"
3341else
[3426]3342 LogFile "INFO: You are using Mindi v$MINDI_VERSION to make boot+data disks"
[747]3343fi
[3231]3344if [ -f $MINDI_LIB/rootfs/usr/bin/busybox ]; then
[3428]3345 LogIt "INFO: You are using Mindi-`$MINDI_LIB/rootfs/usr/bin/busybox 2>&1 | head -1`"
[1005]3346else
[2963]3347 LogIt "ERROR: Unable to find mindi-busybox, please install it"
[1005]3348 MindiExit -1
3349fi
[747]3350
3351for i in loop cdrom ide-cd isofs linear raid0 raid1 raid5 ; do
[3111]3352 modinfo $i 2> /dev/null 1> /dev/null
[3014]3353 if [ $? -eq 0 ]; then
3354 modprobe $i 2>&1 > /dev/null
3355 fi
[747]3356done
3357
[2963]3358LogFile "DIFFERENTIAL = $DIFFERENTIAL"
3359LogFile "INTERNAL TAPE BLOCK SIZE = $INTERNAL_TAPE_BLOCK_SIZE"
3360LogFile "NOT_BOOT = '$NOT_BOOT'"
[747]3361if [ "$NOT_BOOT" != "" ] && [ "$NOT_BOOT" != "0" ] && [ "$NOT_BOOT" != "no" ] ; then
[3278]3362 LogIt "INFO: Just creating $MRCFG and a small all.tar.gz for Mondo. Nothing else."
3363 MakeMondoConfigFile $MINDI_TMP/$MRCFG
[940]3364 MakeMountlist $MINDI_TMP/mountlist.txt
[2432]3365 CheckMountlist $MINDI_TMP/mountlist.txt
[940]3366 mkdir -p $MINDI_TMP/small-all/tmp
[2712]3367 cd "$MINDI_TMP/small-all"
[3278]3368 cp -f $MINDI_TMP/{mountlist.txt,$MRCFG,filelist.full.gz,biggielist.txt} tmp 2>> $LOGFILE || Die "Cannot copy small all.tar.gz"
[2166]3369 tar -cv ./tmp | gzip -9 > $MINDI_TMP/all.tar.gz 2>> $MINDI_TMP/$$.log || Die "Cannot make small all.tar.gz" $MINDI_TMP/$$.log
[747]3370 sleep 2
[963]3371 LogIt "Done. Exiting."
[925]3372 MindiExit 0
[747]3373fi
3374
[1690]3375if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[2963]3376 LogIt "INFO: Including the generation of a Bootable USB device on $USBDEVICE"
[1684]3377fi
3378
[747]3379if [ "$kernelpath" = "" ] ; then
[1335]3380 [ _"$MONDO_SHARE" != _"" ] && Die "Please use -k <path> to specify kernel."
[966]3381 echo -en "Do you want to use your own kernel to build the boot disk ([y]/n) ?"
3382 read ch
3383 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then
3384 USE_OWN_KERNEL="yes"
[1809]3385 else
3386 USE_OWN_KERNEL="no"
[747]3387 fi
3388 if [ "$USE_OWN_KERNEL" = "yes" ]; then
[925]3389 kernelpath=`TryToFindKernelPath`
3390 if [ "$kernelpath" = "" ] ; then
3391 echo -n "Please enter kernel path : "
3392 read kernelpath
3393 fi
[747]3394 fi
3395fi
[3231]3396
[1880]3397echo -e "Mindi's temp dir = $MINDI_TMP \nMindi's output dir=$MINDI_CACHE" >> $LOGFILE
[2963]3398[ "$(($RANDOM%64))" -eq "0" ] && LogIt "INFO: Dude, I've looked inside your computer and it's really dusty..."
[747]3399
[3248]3400mountpoint=$MINDI_TMP/mountpoint.$$
[1983]3401PrepareDataDiskImages
3402
[3372]3403export ramdisk_size=$(($size_of_all_tools+$EXTRA_SPACE))
[747]3404
[2963]3405LogFile "INFO: Ramdisk will be $ramdisk_size KB"
[3398]3406PrepareBootDiskImage $kernelpath || Die "Failed to create boot disk image."
[747]3407
3408[ -e "$MINDI_LIB/memtest.img" ] && BOOT_MEDIA_MESSAGE="$BOOT_MEDIA_MESSAGE\n\
3409...Or type 'memtest' to test your PC's RAM thoroughly.\n"
3410
[1684]3411if [ _"$MONDO_SHARE" = _"" ]; then
[1983]3412 ListImagesForUser
3413 OfferToMakeBootableISO
[1684]3414 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ]; then
[1983]3415 OfferToMakeBootableUSB
[1684]3416 fi
[3149]3417 LogAll "Finished."
[747]3418elif [ "$TAPEDEV" ] ; then
[2078]3419 if [ "$ARCH" != "ia64" ] ; then
3420 # We need to keep the img file as boot file for ia64 platform
3421 rm -f $MINDI_CACHE/{*img,*iso}
3422 else
3423 rm -f $MINDI_CACHE/*iso
3424 fi
[1898]3425 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[1983]3426 OfferToMakeBootableUSB
[1898]3427 fi
[1983]3428 OfferToMakeBootableISO
[1880]3429 if [ -e "$MINDI_CACHE/all.tar.gz" ] ; then
3430 cp -f $MINDI_CACHE/all.tar.gz $MINDI_TMP/ 2>> $LOGFILE
[747]3431 else
[925]3432 Die "Cannot find all.tar.gz, to be written to tape"
[747]3433 fi
[1695]3434elif [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then
[1983]3435 OfferToMakeBootableUSB
[747]3436else
[1983]3437 OfferToMakeBootableISO
[747]3438fi
[3391]3439
[3396]3440if [ -f $MINDI_TMP/$MRCFG ]; then
[3425]3441 LogFile "INFO: Your $MRCFG file is:"
3442 LogFile "--------------------------"
3443 cat $MINDI_TMP/$MRCFG >> $LOGFILE
3444 LogFile "--------------------------"
[3391]3445else
[3421]3446 if [ _"$MONDO_SHARE" != _"" ] ; then
3447 LogIt "ERROR: You don't have a $MRCFG file !"
3448 fi
[3391]3449fi
[747]3450# cleanup
[3149]3451LogAll "INFO: $FRIENDLY_OUTSTRING"
[747]3452for mtpt in $FLOPPY_WAS_MOUNTED ; do
3453 mount $mtpt
3454done
[925]3455MindiExit 0
Note: See TracBrowser for help on using the repository browser.