Changeset 2364 in MondoRescue
- Timestamp:
- Sep 3, 2009, 2:48:51 PM (15 years ago)
- Location:
- branches/2.2.10
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.10/mindi/rootfs/sbin/install-additional-tools
r1998 r2364 73 73 liste=`ls` 74 74 if [ "$liste" ]; then 75 LogIt "Installing and removing $liste" 75 76 tar cf - $liste | (cd / ; tar xf -) 76 77 rm -fr $liste -
branches/2.2.10/mondo/src/common/libmondo-devices.c
r2357 r2364 1730 1730 mr_free(command); 1731 1731 1732 mr_asprintf(tmp, "mount -t nfs -o nolock %s %s", bkpinfo->nfs_mount, bkpinfo->isodir); 1732 if (bkpinfo->restore_data) { 1733 mr_asprintf(tmp, "mount -t nfs -o nolock,ro %s %s", bkpinfo->nfs_mount, bkpinfo->isodir); 1734 else { 1735 mr_asprintf(tmp, "mount -t nfs -o nolock %s %s", bkpinfo->nfs_mount, bkpinfo->isodir); 1736 } 1733 1737 run_program_and_log_output(tmp, 3); 1734 1738 mr_free(tmp);
Note:
See TracChangeset
for help on using the changeset viewer.