Changeset 3328 in MondoRescue


Ignore:
Timestamp:
Dec 17, 2014, 1:38:09 PM (9 years ago)
Author:
Bruno Cornec
Message:
  • Adds support for XFS labelling
Location:
branches
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mondo/src/restore-scripts/mondo/label-partitions-as-necessary

    r3040 r3328  
    3737        elif [ "$format" = "reiserfs" ]; then
    3838            command="reiserfstune $opttun $label $mountpt"
     39            LogIt "Running $command"
     40            $command
     41        elif [ "$format" = "xfs" ]; then
     42            command="xfs_admin $opttun $label $mountpt"
    3943            LogIt "Running $command"
    4044            $command
  • branches/3.2/mindi/rootfs/etc/init.d/rcS

    r3325 r3328  
    121121    done
    122122    # Doing that is only valid when using a real serial line
    123     if [[ $serial != "" && -e $serial ]]; then
     123    if [[ $serial != "" && -e $serial ]]; then
    124124        LogIt "Redirecting serial $serial to /dev/tty" 1
    125125        ln -s -f $serial /dev/tty
  • branches/3.2/mondo/src/restore-scripts/mondo/label-partitions-as-necessary

    r3040 r3328  
    3737        elif [ "$format" = "reiserfs" ]; then
    3838            command="reiserfstune $opttun $label $mountpt"
     39            LogIt "Running $command"
     40            $command
     41        elif [ "$format" = "xfs" ]; then
     42            command="xfs_admin $opttun $label $mountpt"
    3943            LogIt "Running $command"
    4044            $command
Note: See TracChangeset for help on using the changeset viewer.