Statistics
| Branch: | Tag: | Revision:

root / snf-image-helper / snf-image-helper.in @ ff7783b8

History | View | Annotate | Download (2.9 kB)

1
#!/bin/bash
2

    
3
# Copyright 2011 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
7
# are met:
8
#
9
#   1. Redistributions of source code must retain the above copyright
10
#      notice, this list of conditions and the following disclaimer.
11
#
12
#  2. Redistributions in binary form must reproduce the above copyright
13
#     notice, this list of conditions and the following disclaimer in the
14
#     documentation and/or other materials provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26
# SUCH DAMAGE.
27
#
28
# The views and conclusions contained in the software and documentation are
29
# those of the authors and should not be interpreted as representing official
30
# policies, either expressed or implied, of GRNET S.A.
31

    
32
. @commondir@/common.sh
33

    
34
set -e
35
set -o pipefail
36

    
37
if [ "x$1" != "x--force" ]; then
38
    log_error "WARNING: This will cause the system to halt."
39
    log_error "Use --force if you know what you're doing."
40
    exit 1
41
fi
42

    
43
# terminate helper vm when the script exits
44
add_cleanup telinit 0
45

    
46
if [ ! -b "$FLOPPY_DEV" ]; then
47
    log_error "Floppy device is not present!"
48
fi
49

    
50
floppy=$(mktemp -d --tmpdir floppy.XXXXXX)
51
add_cleanup rmdir "$floppy"
52

    
53
mount $FLOPPY_DEV $floppy
54
add_cleanup umount "$floppy"
55

    
56
if [ -f "$floppy/rules" ]; then
57
    source "$floppy/rules"
58
else
59
    log_error "Floppy does not contain \`rules\' file"
60
fi
61

    
62
# Image mount point...
63
target=$(mktemp -d --tmpdir target.XXXXXX)
64
add_cleanup rmdir "$target"
65

    
66
export SNF_IMAGE_TARGET="$target"
67

    
68
if [ ! -d "@tasksdir@" ]; then
69
    log_error "snf-image/tasks directory is missing"
70
fi
71

    
72
RUN_PARTS=$(which run-parts)
73
if [ -z "$RUN_PARTS" ]; then
74
    log_error "run-parts programe is missing from the system"
75
fi
76

    
77
# If something goes wrong with the tasks, try to umount the target filesystem
78
# in case it is left mounted...
79
trap '{ umount "$target"; }' ERR
80

    
81
echo "Execute all snf-image tasks...."
82
$RUN_PARTS -v --exit-on-error "@tasksdir@"
83

    
84
# Disable the trap. If code reaches here, the filesystem is unmounted.
85
trap - ERR
86

    
87
echo "SUCCESS" > "$RESULT"
88

    
89
cleanup
90
trap - EXIT
91

    
92
# never called...
93
exit 0
94

    
95
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :