source: MondoRescue/branches/3.2/mondo/src/restore-scripts/mondo/label-partitions-as-necessary@ 3328

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