a49d2fa86c04b5e6d01ce499256af4c1e8648fe3
[ext/instance-debootstrap.git] / rename
1 #!/bin/bash
2
3 # Copyright (C) 2007, 2008, 2009 Google Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301, USA.
19
20 set -e
21
22 . common.sh
23
24 CLEANUP=( )
25
26 trap cleanup EXIT
27
28 TMPDIR=`mktemp -d` || exit 1
29 CLEANUP+=("rmdir $TMPDIR")
30
31 # If the target device is not a real block device we'll first losetup it.
32 # This is needed for file disks.
33 if [ ! -b $blockdev ]; then
34   ORIGINAL_BLOCKDEV=$blockdev
35   blockdev=$(losetup -sf $blockdev)
36   CLEANUP+=("losetup -d $blockdev")
37 fi
38
39 if [ "$PARTITION_STYLE" = "none" ]; then
40   filesystem_dev=$blockdev
41 elif [ "$PARTITION_STYLE" = "msdos" ]; then
42   filesystem_dev=$(map_disk0 $blockdev)
43   CLEANUP+=("unmap_disk0 $blockdev")
44 else
45   echo "Unknown partition style $PARTITION_STYLE"
46   exit 1
47 fi
48
49 mount $filesystem_dev $TMPDIR
50 CLEANUP+=("umount $TMPDIR")
51
52 HNAME="$TMPDIR/etc/hostname"
53 MNAME="$TMPDIR/etc/mailname"
54
55 # for hostname, we raise and error if the old hostname is not what we
56 # expect
57 OLD_HNAME="`cat $HNAME`"
58 if [ "$OLD_HNAME" = "$old_name" ]; then
59         echo $instance > $HNAME
60 else
61         log_error "Cannot rename from $old_name to $instance:"
62         log_error "Instance has a different hostname ($OLD_HNAME)"
63         exit 1
64 fi
65
66 # for mailname, we rename only if it has the old name, otherwise we
67 # ignore it (and assumme that it's a customized name)
68 if [ "`cat $MNAME`" = "$old_name" ]; then
69         echo $instance > $MNAME
70 fi
71
72 # execute cleanups
73 cleanup
74 trap - EXIT
75
76 exit 0