Changeset 1485 in MondoRescue


Ignore:
Timestamp:
Jun 5, 2007, 11:45:29 PM (17 years ago)
Author:
Bruno Cornec
Message:
  • mindi.conf isn't officially supported in that version so man page adapted
  • Fix a bug where MINDI_CACHE wasn't excluded from backup
Location:
branches/2.2.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.4/mindi/mindi

    r1483 r1485  
    102102fi
    103103
    104 # Now we can create what we nedd
     104# Now we can create what we need
    105105MINDI_TMP=`mktemp -d $TMPDIR/mindi.XXXXXXXXXX`
    106106mkdir -p $MINDI_TMP
  • branches/2.2.4/mondo-doc/mindi.8

    r978 r1485  
    163163.B mindi
    164164bootable ISO image.
    165 .SH CONFIGURATION FILE
    166 You may create a mindi configuration file under
    167 .B /etc/mindi
    168 called
    169 .B mindi.conf
    170 which overwrites default values by setting up the following variables:
    171 .TP
    172 .I TMPDIR
    173 .B (default /tmp): directory to create temporary files
    174 .br
    175 .TP
    176 .I EXTRA_SPACE
    177 .B (default 24576): increase if you run out of ramdisk space
    178 .br
    179 .TP
    180 .I IA64_BOOT_SIZE
    181 .B (default 8192): size of the ia64 boot disk
    182 .br
    183 .TP
    184 .I CACHE_LOC
    185 .B (default /var/cache/mindi): directory where boot/root files
    186 and iso are generated
    187 .br
    188 WARNING: This directory is erased before usage
    189 .br
    190165.SH "SEE ALSO"
    191166mondoarchive(8), mondorestore(8).
  • branches/2.2.4/mondo/src/common/libmondo-filelist.c

    r1475 r1485  
    17511751        sprintf(exclude_paths, " %s %s %s %s %s %s . .. \
    17521752" MNT_CDROM " " MNT_FLOPPY " /media \
    1753 /proc /sys /root/images/mondo MINDI_CACHE ", excp, call_program_and_get_last_line_of_output("locate /win386.swp 2> /dev/null"), call_program_and_get_last_line_of_output("locate /hiberfil.sys 2> /dev/null"), call_program_and_get_last_line_of_output("locate /pagefile.sys 2> /dev/null"), (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir);
     1753/proc /sys /root/images/mondo " MINDI_CACHE, excp, call_program_and_get_last_line_of_output("locate /win386.swp 2> /dev/null"), call_program_and_get_last_line_of_output("locate /hiberfil.sys 2> /dev/null"), call_program_and_get_last_line_of_output("locate /pagefile.sys 2> /dev/null"), (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir);
    17541754
    17551755        log_msg(2, "Excluding paths = '%s'", exclude_paths);
Note: See TracChangeset for help on using the changeset viewer.