Statistics
| Branch: | Revision:

root / rename @ e7a2d1ad

History | View | Annotate | Download (2.4 kB)

1
#!/bin/bash
2

    
3
# Copyright (C) 2010 Oregon State University
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
debug set -x
25

    
26
TARGET=`mktemp -d` || exit 1
27
CLEANUP+=("rmdir $TARGET")
28

    
29
# If the target device is not a real block device we'll first losetup it.
30
# This is needed for file disks.
31
if [ ! -b $blockdev ]; then
32
  ORIGINAL_BLOCKDEV=$blockdev
33
  blockdev=$($LOSETUP -sf $blockdev)
34
  CLEANUP+=("$LOSETUP -d $blockdev")
35
fi
36

    
37
filesystem_base_dev=$(map_disk0 $blockdev)
38
if [ "${SWAP}" = "yes" ] ; then
39
    boot_dev="${filesystem_base_dev}-1"
40
    swap_dev="${filesystem_base_dev}-2"
41
    root_dev="${filesystem_base_dev}-3"
42
else
43
    boot_dev="${filesystem_base_dev}-1"
44
    root_dev="${filesystem_base_dev}-2"
45
fi
46
CLEANUP+=("unmap_disk0 $blockdev")
47

    
48
mount_disk0 $TARGET $root_dev $boot_dev
49

    
50
get_os_type
51

    
52
case "${OS_TYPE}" in
53
    debian)
54
        HNAME="${TARGET}/etc/hostname"
55
        OLD_HNAME="$(cat $HNAME)"
56
        ;;
57
    redhat)
58
        HNAME="${TARGET}/etc/sysconfig/network"
59
        OLD_HNAME="$(grep HOSTNAME ${HNAME} | \
60
            sed -e 's/HOSTNAME=//' | cut -d \".\" -f 1)"
61
        ;;
62
    gentoo)
63
        HNAME="${TARGET}/etc/conf.d/hostname"
64
        OLD_HNAME="$(grep HOSTNAME ${HNAME} | \
65
            sed -e 's/HOSTNAME=//' | cut -d \".\" -f 1)"
66
        ;;
67
    suse)
68
        HNAME="${TARGET}/etc/HOSTNAME"
69
        OLD_HNAME="$(cat $HNAME)"
70
        ;;
71
esac
72

    
73
if [ "$OLD_HNAME" = "$old_name" ]; then
74
    case "${OS_TYPE}" in
75
        debian|suse)
76
            echo $instance > $HNAME
77
            ;;
78
        redhat|gentoo)
79
            sed -ei "s/HOSTNAME=${OLD_HNAME}/HOSTNAME=${instance}/" $HNAME
80
            ;;
81
    esac
82
else
83
    log_error "Cannot rename from $old_name to $instance:"
84
    log_error "Instance has a different hostname ($OLD_HNAME)"
85
    exit 1
86
fi
87

    
88
# execute cleanups
89
cleanup
90
trap - EXIT
91

    
92
exit 0