/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to initramfs-tools-hook

  • Committer: Teddy Hogeborn
  • Date: 2008-09-05 18:37:28 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080905183728-l0m8v3vqa302uwrw
* mandos (main): Use EAFP with pidfile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    exit 1
41
41
fi
42
42
 
43
 
for d in /etc/keys/mandos /etc/mandos/keys; do
 
43
for d in /etc/keys/mandos /usr/local/lib/mandos/keys; do
44
44
    if [ -d "$d" ]; then
45
45
        keydir="$d"
46
46
        break
51
51
    exit 1
52
52
fi
53
53
 
54
 
mandos_user="`{ getent passwd mandos \
55
 
                || getent passwd nobody \
56
 
                || echo ::65534::::; } \
57
 
        | awk --field-separator=: '{ print $3 }'`" 
58
 
mandos_group="`{ getent group mandos \
59
 
                || getent group nogroup \
60
 
                || echo ::65534:; } \
61
 
        | awk --field-separator=: '{ print $3 }'`"
62
 
 
63
54
# The Mandos network client uses the network
64
55
auto_add_modules net
65
56
# The Mandos network client uses IPv6
71
62
PLUGINDIR="${MANDOSDIR}/plugins.d"
72
63
 
73
64
# Make directories
74
 
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
75
 
        "${DESTDIR}${MANDOSDIR}"
76
 
install --owner=${mandos_user} --group=${mandos_group} --directory \
77
 
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
 
65
mkdir --parents "${DESTDIR}${CONFDIR}"
 
66
mkdir --parents "${DESTDIR}${PLUGINDIR}"
78
67
 
79
68
# Copy the Mandos plugin runner
80
69
copy_exec "$prefix"/lib/mandos/plugin-runner "${MANDOSDIR}"
106
95
done
107
96
 
108
97
# GPGME needs /usr/bin/gpg
109
 
if [ ! -e "${DESTDIR}/usr/bin/gpg" \
110
 
    -a -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* \
111
 
                2>/dev/null`" ]; then
 
98
if ! [ -e "${DESTDIR}/usr/bin/gpg" ] \
 
99
    && [ -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* 2>/dev/null`" ]; then
112
100
    copy_exec /usr/bin/gpg
113
101
fi
114
102
 
115
 
# Config files
116
 
for file in /etc/mandos/*; do
117
 
    if [ -d "$file" ]; then
118
 
        continue
119
 
    fi
120
 
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
121
 
done
122
 
 
123
 
# Key files 
124
 
for file in  "$keydir"/*; do
125
 
    if [ -d "$file" ]; then
126
 
        continue
127
 
    fi
128
 
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
129
 
    chown ${mandos_user}:${mandos_group} \
130
 
        "${DESTDIR}${CONFDIR}/`basename \"$file\"`"
 
103
# Config files and key files 
 
104
for file in /etc/mandos/* "$keydir"/*; do
 
105
    if [ -d "$file" ]; then
 
106
        continue
 
107
    fi
 
108
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
131
109
done
132
110
 
133
111
# /lib/mandos/plugin-runner will drop priviliges, but needs access to
142
120
# condition.  This umask is set by "initramfs-tools-hook-conf",
143
121
# installed as "/usr/share/initramfs-tools/conf-hooks.d/mandos".)
144
122
145
 
for full in "${MANDOSDIR}" "${CONFDIR}"; do
 
123
for full in "${PLUGINDIR}" "${CONFDIR}"; do
146
124
    while [ "$full" != "/" ]; do
147
125
        chmod a+rX "${DESTDIR}$full"
148
126
        full="`dirname \"$full\"`"
157
135
    fi
158
136
done
159
137
for dir in /lib /usr/lib; do
160
 
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -or -print0 \
 
138
    find "${DESTDIR}$dir" \! -perm /u+rw,g+r -prune -o -print0 \
161
139
        | xargs --null --no-run-if-empty chmod a+rX
162
140
done