source: MondoRescue/branches/3.0/mondo/src/restore-scripts/mondo/label-partitions-as-necessary@ 3318

Last change on this file since 3318 was 3040, checked in by Bruno Cornec, 12 years ago
  • Fix #622: Adds swaplabel support if it exists
  • Property svn:keywords set to Id
  • Property svn:unix-mode set to 755
File size: 2.5 KB
RevLine 
[1]1#!/bin/sh
2#
[901]3# $Id: label-partitions-as-necessary 3040 2012-10-06 03:25:43Z bruno $
[1]4#
5############################################
6
7
8read_partition_line() {
[1314]9 local label mountpt command format
[1295]10
[1314]11 label=`echo "$1" | awk '{print $1}' | cut -d'=' -f2`
12 format=`echo "$1" | awk '{print $3}'`
[1755]13 mountpt=`awk '{print $1,$5}' $mountlist | grep " $label$" | awk '{print $1}'`
[1314]14
15 if [ "`echo "$1" | grep -E 'LABEL='`" != "" ] ; then
[2028]16 [ "$format" = "reiserfs" ] && opttun="-l" || opttun="-L"
[1314]17 elif [ "`echo "$1" | grep -E 'UUID='`" != "" ] ; then
[2028]18 [ "$format" = "reiserfs" ] && opttun="-u" || opttun="-U"
[1295]19 else
[2066]20 LogIt "Nothing to do on $1"
[1295]21 return
[1314]22 fi
[1295]23
24 if [ ! "$mountpt" ] ; then
[1314]25 LogIt "Not labeling anything as ($label) because ($mountpt) is not a mountpoint"
[1295]26 elif [ ! "$label" ] ; then
[1314]27 LogIt "Not labeling ($mountpt) as anything because ($label) is not a label"
[1295]28 else
[2087]29 if [ "$format" = "ext2" ] || [ "$format" = "ext3" ] || [ "$format" = "ext4" ]; then
[3008]30 if [ "$format" = "ext4" ] && [ -x "/sbin/tune4fs" ]; then
31 command="/sbin/tune4fs $opttun $label $mountpt"
32 else
33 command="tune2fs $opttun $label $mountpt"
34 fi
[1295]35 LogIt "Running $command"
36 $command
[2028]37 elif [ "$format" = "reiserfs" ]; then
38 command="reiserfstune $opttun $label $mountpt"
39 LogIt "Running $command"
40 $command
[1295]41 elif [ "$format" = "swap" ] ; then
42 if [ "$opttun" = "-U" ]; then
[1780]43 LogIt "Creating uuid $label on swap partition $mountpt"
[3040]44 if [ -x "/sbin/swaplabel" ]; then
45 /sbin/swaplabel $opttun $label $mountpt
46 else
47 echo -n "$label" | perl -ne 's/-//g;chomp;print pack "H*",$_' | dd conv=notrunc "of=$mountpt" obs=1 seek=1036
48 fi
[1295]49 else
[3040]50 if [ -x "/sbin/swaplabel" ]; then
51 command="/sbin/swaplabel $opttun $label $mountpt"
52 else
53 command="mkswap $opttun $label $mountpt"
54 fi
[1295]55 LogIt "Running $command"
56 $command
57 fi
58 else
[3008]59 LogIt "I am NOT going to run tune2|4fs/reiserfstune: the partition is format '$format', which doesn't like tune2|4fs/reiserfstune anyway"
[1295]60 fi
[1]61 fi
62}
63
64
65# ---------------------------------------------
66
[3008]67LogIt "Identifying your drives with FS tune tool"
[1]68if [ "$#" -ne "1" ] ; then
69 LogIt "label-partitions-as-necessary /tmp/mountlist.txt < /tmp/fstab.new" 1
70 exit 1
71fi
72mountlist=$1
73noof_blank_lines=0
74read line
[2172]75# We end after 50 empty lines, which hopefully means we reach the end of the file
76while [ "$noof_blank_lines" -le "50" ] ; do
[1]77 if [ "$line" = "" ] ; then
[691]78 noof_blank_lines=$(($noof_blank_lines+1))
[1]79 else
[691]80 noof_blank_lines=0
81 read_partition_line "$line"
[1]82 fi
83 read line
84done
85LogIt "Labeling complete."
86exit 0
Note: See TracBrowser for help on using the repository browser.