Statistics
| Branch: | Tag: | Revision:

root / snf-image-helper / tasks / 30MountImage.in @ 10bf026d

History | View | Annotate | Download (1.4 kB)

1
#! /bin/bash
2

    
3
# Copyright (C) 2011 GRNET S.A. 
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
### BEGIN TASK INFO
21
# Provides:		MountImage
22
# RunBefore:		UmountImage
23
# Short-Description:	Mount the partition that hosts the image
24
### END TASK INFO
25

    
26
set -e
27
. "@commondir@/common.sh"
28

    
29
if [ ! -d "$SNF_IMAGE_TARGET" ]; then
30
    log_error "Target dir:\`$SNF_IMAGE_TARGET' is missing"
31
fi
32

    
33
if [ -z "$SNF_IMAGE_PROPERTY_ROOT_PARTITION" ]; then
34
    log_error "Root Partition image property not defined"
35
fi
36

    
37
rootdev="${SNF_IMAGE_DEV}${SNF_IMAGE_PROPERTY_ROOT_PARTITION}"
38

    
39
if [ ! -b "$rootdev" ]; then
40
    log_error "Image root partition device:\`$rootdev' is not a block device"
41
fi
42

    
43
mount "$rootdev" "$SNF_IMAGE_TARGET" -o rw
44

    
45
exit 0
46

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