Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.2 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
set -o pipefail
29

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

    
32
if [ ! -d "$SNF_IMAGE_TARGET" ]; then
33
    log_error "Target dir: \`$SNF_IMAGE_TARGET' is missing"
34
fi
35

    
36
if [ -z "$SNF_IMAGE_PERSONALITY" ]; then
37
    warn "This image has no personality (0 files to inject)"
38
    exit 0
39
fi
40

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

    
65
exit 0
66

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