Statistics
| Branch: | Revision:

root / rename @ 77449e7c

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
CLEANUP+=("unmap_disk0 $blockdev")
39

    
40
mount_disk0 $TARGET
41
get_os_type
42

    
43
case "${OS_TYPE}" in
44
    debian)
45
        HNAME="${TARGET}/etc/hostname"
46
        OLD_HNAME="$(cat $HNAME)"
47
        ;;
48
    redhat)
49
        HNAME="${TARGET}/etc/sysconfig/network"
50
        OLD_HNAME="$(grep HOSTNAME ${HNAME} | \
51
            sed -e 's/HOSTNAME=//' | \
52
            sed -e s/\"//g)"
53
        ;;
54
    gentoo)
55
        HNAME="${TARGET}/etc/conf.d/hostname"
56
        OLD_HNAME="$(grep HOSTNAME ${HNAME} | \
57
            sed -e 's/HOSTNAME=//' | \
58
            sed -e s/\"//g)"
59
        ;;
60
    suse)
61
        HNAME="${TARGET}/etc/HOSTNAME"
62
        OLD_HNAME="$(cat $HNAME)"
63
        ;;
64
esac
65

    
66
if [ "$OLD_HNAME" = "$old_name" \
67
        -o "${OLD_HNAME}.$(echo $old_name | cut -d . -f 2,3)" \
68
        = "$old_name"] ; then
69
    case "${OS_TYPE}" in
70
        debian|suse)
71
            echo $instance > $HNAME
72
            ;;
73
        redhat)
74
            sed -ie "s/HOSTNAME=${OLD_HNAME}/HOSTNAME=${instance}/" $HNAME
75
            ;;
76
        gentoo)
77
            sed -ie "s/HOSTNAME.*/HOSTNAME=\"${OLD_HNAME}}\"/" $HNAME
78
            ;;
79
    esac
80
else
81
    log_error "Cannot rename from $old_name to $instance:"
82
    log_error "Instance has a different hostname ($OLD_HNAME)"
83
    exit 1
84
fi
85

    
86
# execute cleanups
87
cleanup
88
trap - EXIT
89

    
90
exit 0