source: MondoRescue/branches/stable/mindi/rootfs/sbin/hack-cfg-if-necessary@ 1478

Last change on this file since 1478 was 1158, checked in by Bruno Cornec, 17 years ago

WARNING: Interface change for mondo-restore.cfg: the delimiter between the variable name and its value is now a = (was a ' ')
This change will allow the introduction of the new mr_conf functions

  • Property svn:keywords set to Id
File size: 670 bytes
Line 
1#!/bin/sh
2#
3# $Id: hack-cfg-if-necessary 1158 2007-02-14 01:32:50Z bruno $
4#
5
6if ! mount | grep cdrom ; then
7 LogIt "CD-ROM is not mounted. Darn."
8 exit 0
9fi
10
11if ! ls /mnt/cdrom/archives/* > /dev/null 2> /dev/null ; then
12 LogIt "Can't find /mnt/cdrom/archives; darn."
13 exit 0
14fi
15
16LogIt "OK, we've found /mnt/cdrom/archives/*; great."
17
18if ! grep "backup-media-type=iso" /tmp/mondo-restore.cfg ; then
19 LogIt "Config file is fine, BTW."
20 exit 0
21fi
22
23LogIt "Re-jigging mondo-restore.cfg because you backed up to ISOs and then burned them to CDs" 1
24mv -f /tmp/mondo-restore.cfg /tmp/mrco
25sed 's/backup-media-type=iso/backup-media-type=cdr/' /tmp/mrco > /tmp/mondo-restore.cfg
26LogIt "Done re-jigging. Yay."
27exit 0
Note: See TracBrowser for help on using the repository browser.