source: MondoRescue/branches/2.2.10/mindi/rootfs/sbin/hack-cfg-if-necessary@ 2591

Last change on this file since 2591 was 2591, checked in by Bruno Cornec, 14 years ago

r3723@localhost: bruno | 2010-03-09 23:56:51 +0100

  • No error msg if mondorestore.cfg doesn't exist (mindi alone)
  • Property svn:keywords set to Id
File size: 758 bytes
Line 
1#!/bin/sh
2#
3# $Id: hack-cfg-if-necessary 2591 2010-03-11 01:56:00Z 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 [ -f $MINDI_CACHE/mondorestore.cfg ]; then
19 if [ ! grep "backup-media-type iso" $MINDI_CACHE/mondorestore.cfg 2 > /dev/null] ; then
20 LogIt "Config file is fine, BTW."
21 exit 0
22 fi
23fi
24
25if [ -f $MINDI_CACHE/mondorestore.cfg ]; then
26 LogIt "Re-jigging mondorestore.cfg because you backed up to ISOs and then burned them to CDs" 1
27 sed -i 's/backup-media-type iso/backup-media-type cdr/' $MINDI_CACHE/mondorestore.cfg
28 LogIt "Done re-jigging. Yay."
29fi
30exit 0
Note: See TracBrowser for help on using the repository browser.