Changeset 3454 in MondoRescue for branches


Ignore:
Timestamp:
Aug 30, 2015, 12:37:03 PM (9 years ago)
Author:
Bruno Cornec
Message:
  • Avoids cp/mv messages at retore time when changing the pivot
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi/rootfs/etc/init.d/rcS

    r3441 r3454  
    738738        mv /tmp/* /tmp.old/
    739739        # Try to Deal with a busybox bug on inexistant links
    740         cp /tmp/* /tmp.old/
     740        cp /tmp/* /tmp.old/ 2> /dev/null
    741741        rm -f /tmp/*
    742742        $mount_cmd /tmp
    743         mv /tmp.old/* /tmp/
     743        mv /tmp.old/* /tmp/ 2> /dev/null
    744744        # Try to Deal with a busybox bug on inexistant links
    745         cp /tmp.old/* /tmp/
     745        cp /tmp.old/* /tmp/ 2> /dev/null
    746746        rm -rf /tmp.old
    747747        mkdir -p /tmp/tmpfs
Note: See TracChangeset for help on using the changeset viewer.