Statistics
| Branch: | Tag: | Revision:

root / helper / rc.local @ c308b9f9

History | View | Annotate | Download (2.5 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
. /usr/share/snf-image/common.sh
33

    
34
set -e
35

    
36
# terminate helper vm when the script exits
37
CLEANUP+=("telinit 0")
38

    
39
if [ ! -b $FLOPPY_DEV ]; then
40
    log_error "Floppy device is not present!"
41
fi
42

    
43
floppy=$(mktemp -d --tmpdir floppy.XXXXXXXX)
44
CLEANUP+=("rmdir $floppy")
45

    
46
mount $FLOPPY_DEV $floppy
47
CLEANUP+=("umount $floppy")
48

    
49
if [ -f $floppy/rules ]; then
50
    source $floppy/rules
51
else
52
    log_error "Floppy does not contain \`rules\' file"
53
fi
54

    
55
# Image mount point...
56
target=$(mktemp -d --tmpdir target.XXXXXXXX) || exit 1
57
CLEANUP+=("rmdir $target")
58

    
59
SNF_IMAGE_DEV=/dev/sdb
60
SNF_IMAGE_TARGET=$target
61

    
62
# Make sure all SNF_IMAGE_* variables are accessible by snf-image/tasks scripts
63
set | egrep ^SNF_IMAGE_\\w+= | cut -d= -f1 | while read line; do
64
    export $line
65
done
66

    
67
RUN_PARTS=`which run-parts`
68
if [ -n "$RUN_PARTS" -a -n "/usr/lib/snf-image/tasks" ]; then
69
    $RUN_PARTS "/usr/lib/snf-image/tasks"
70
fi
71

    
72
cleanup
73
trap - EXIT
74

    
75
# never called...
76
exit 0
77

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