Statistics
| Branch: | Revision:

root / import @ 8d77389f

History | View | Annotate | Download (2.6 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
# If the target device is not a real block device we'll first losetup it.
27
# This is needed for file disks.
28
if [ ! -b $blockdev ]; then
29
    ORIGINAL_BLOCKDEV=$blockdev
30
    blockdev=$($LOSETUP -sf $blockdev)
31
    CLEANUP+=("$LOSETUP -d $blockdev")
32
fi
33

    
34
TARGET=`mktemp -d` || exit 1
35
CLEANUP+=("rmdir $TARGET")
36
DUMPDIR=`mktemp -d` || exit 1
37
CLEANUP+=("rm -rf $DUMPDIR")
38

    
39
if [ ! "${NOMOUNT}" = "yes" ] ; then
40
    format_disk0 $blockdev
41
    filesystem_dev=$(map_disk0 $blockdev)
42
    CLEANUP+=("unmap_disk0 $blockdev")
43
    root_dev=$(map_partition $filesystem_dev root)
44
    boot_dev=$(map_partition $filesystem_dev boot)
45
    swap_dev=$(map_partition $filesystem_dev swap)
46

    
47
    mkfs_disk0
48
    root_uuid="$($VOL_ID $root_dev)"
49
    [ -n "$boot_dev" ] && boot_uuid="$($VOL_ID $boot_dev)"
50
    [ -n "$swap_dev" ] && swap_uuid="$($VOL_ID $swap_dev)"
51

    
52
    mount_disk0 $TARGET
53
fi
54

    
55
# import dumps from tar file
56
( cd $DUMPDIR; tar -xf - )
57

    
58
if [ "${NOMOUNT}" = "yes" ] ; then
59
    ( $QEMU_IMG convert ${DUMPDIR}/disk.img -O host_device ${blockdev} )
60
else
61
    ( cd $TARGET ; restore -r -y -f ${DUMPDIR}/root.dump )
62
    if [ -n "${boot_dev}" ] ; then
63
        ( cd ${TARGET}/boot ; restore -r -y -f ${DUMPDIR}/boot.dump )
64
    fi
65

    
66
    setup_fstab $TARGET
67

    
68
    if [ "${INSTANCE_HV_serial_console}" = "True" ] ; then
69
        setup_console $TARGET
70
    fi
71

    
72
    rm -f $TARGET/etc/udev/rules.d/z*_persistent-net.rules
73

    
74
    if [ -n "$CUSTOMIZE_DIR" -a -d "$CUSTOMIZE_DIR" -a -x "$CUSTOMIZE_DIR/grub" ] ; then
75
        TARGET=$TARGET
76
        BLOCKDEV=$blockdev
77
        ROOT_DEV=$root_dev
78
        BOOT_DEV=$boot_dev
79
        IMPORT_SCRIPT="1"
80
        export TARGET SUITE BLOCKDEV ROOT_DEV BOOT_DEV IMPORT_SCRIPT
81
        # Install grub since we're not deploying via qemu-img
82
        ${CUSTOMIZE_DIR}/grub
83
    fi
84
fi
85

    
86
# execute cleanups
87
cleanup
88
trap - EXIT
89

    
90
exit 0