Last change
on this file since 2191 was 1983, checked in by Bruno Cornec, 17 years ago |
- Remove aux-tools dir in mindi (either scripts moved or removed)
- Remove isolinux and syslinux static files from mindi. Now generated
- Remove lilo support for ia32 now useless in mindi
- Remoce empty directories in rootfs in mindi
- Remove HackSyslinuxFile, CopyBootBFile, FindLiloBinary, FindSensibleBootBFile, MakeSyslinuxMessageFile, MakeLiloConfFile, ReplaceIndividualLine in mindi
- Adds a single MakeBootConfFile function to dynamiclly create needed conf files in mindi
- Avoids error messages when using only mindi with a non-existant /tmp/mondo-restore.cfg
|
-
Property svn:keywords
set to
Id
|
File size:
636 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # $Id: hack-cfg-if-necessary 1983 2008-06-16 19:40:42Z bruno $
|
---|
4 | #
|
---|
5 |
|
---|
6 | if ! mount | grep cdrom ; then
|
---|
7 | LogIt "CD-ROM is not mounted. Darn."
|
---|
8 | exit 0
|
---|
9 | fi
|
---|
10 |
|
---|
11 | if ! ls /mnt/cdrom/archives/* > /dev/null 2> /dev/null ; then
|
---|
12 | LogIt "Can't find /mnt/cdrom/archives; darn."
|
---|
13 | exit 0
|
---|
14 | fi
|
---|
15 |
|
---|
16 | LogIt "OK, we've found /mnt/cdrom/archives/*; great."
|
---|
17 |
|
---|
18 | if ! grep "backup-media-type iso" /tmp/mondo-restore.cfg 2 > /dev/null ; then
|
---|
19 | LogIt "Config file is fine, BTW."
|
---|
20 | exit 0
|
---|
21 | fi
|
---|
22 |
|
---|
23 | LogIt "Re-jigging mondo-restore.cfg because you backed up to ISOs and then burned them to CDs" 1
|
---|
24 | sed -i 's/backup-media-type iso/backup-media-type cdr/' /tmp/mondo-restore.cfg
|
---|
25 | LogIt "Done re-jigging. Yay."
|
---|
26 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.