Statistics
| Branch: | Tag: | Revision:

root / snf-image-helper / tasks / 50EnforcePersonality.in @ a50a2bff

History | View | Annotate | Download (2.3 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:		EnforcePersonality
22
# RunBefore:		UmountImage
23
# RunAfter:		DeleteSSHKeys
24
# Short-Description:	Inject files to the instance
25
### END TASK INFO
26

    
27
set -e
28

    
29
. "@commondir@/common.sh"
30

    
31
trap task_cleanup EXIT
32
report_task_start
33

    
34
# Check if the task should be prevented from running.
35
check_if_excluded
36

    
37
if [ ! -d "$SNF_IMAGE_TARGET" ]; then
38
    log_error "Target dir: \`$SNF_IMAGE_TARGET' is missing"
39
fi
40

    
41
if [ -z "$SNF_IMAGE_PERSONALITY" ]; then
42
    warn "This image has no personality (0 files to inject)"
43
    exit 0
44
fi
45

    
46
if [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = "windows" ]; then
47
    echo "$SNF_IMAGE_PERSONALITY" |
48
        @scriptsdir@/inject-files.py "$SNF_IMAGE_TARGET"
49
    exit 0
50
elif [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = "linux" ]; then
51
    tmpdir=$(chroot "$SNF_IMAGE_TARGET" mktemp -d)
52
    add_cleanup rm -rf "$SNF_IMAGE_TARGET/$tmpdir"
53
    echo "$SNF_IMAGE_PERSONALITY" |
54
        @scriptsdir@/inject-files.py -d "$SNF_IMAGE_TARGET/$tmpdir"
55
    chroot "$SNF_IMAGE_TARGET" chmod 777 "$tmpdir"
56
    {
57
        while read -d $'\0' src; do
58
            read -d $'\0' owner;
59
            read -d $'\0' group;
60
            read -d $'\0' mode;
61
            read -d $'\0' dest;
62
            chroot "$SNF_IMAGE_TARGET" chown "$owner:$group" "$tmpdir/$src"
63
            chroot "$SNF_IMAGE_TARGET" su -l "$owner" -c \
64
                "install -D -m $mode $(printf "%q" "$tmpdir")/$src \
65
                $(printf "%q" "$dest")"
66
        done
67
    } < "$SNF_IMAGE_TARGET/$tmpdir/manifest"
68
fi
69

    
70
exit 0
71

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