/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 23:39:07 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080905233907-3rz7kuwyjwma0pjx
* Makefile (confdir/clients.conf): Tighten permissions to "u=rw".
  (install-server): Set mode of "/etc/mandos/clients.conf" to
                             "u=rw".
  (install-client): Set mode of "/etc/mandos/plugins.d" to "u=rwx".
  (uninstall-client): Also remove "/usr/lib/mandos/plugins.d/usplash",
                "/usr/share/initramfs-tools/scripts/local-top/mandos",
                      and "/etc/keys/mandos".
  (purge-server): Also remove "/var/run/mandos.pid".

* initramfs-tools-hook: Use "install" instead of "mkdir".  Change
                        owner of "/lib/mandos/plugins.d" and key
                        files.  Bug fix: do not repair permissions of
                        "/lib/mandos/plugins.d".  Bug fix: Really
                        avoid deliberately unreadable files and/or
                        directories.

* mandos-keygen (umask): Changed to "077".

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    exit 1
52
52
fi
53
53
 
 
54
mandos_user="`{ getent passwd mandos \
 
55
        || getent passwd nobody \
 
56
        || echo ::65534::::; } | awk -F: '{ print $3 }'`" 
 
57
mandos_group="`{ getent group mandos \
 
58
        || getent group nogroup \
 
59
        || echo ::65534:; } | awk -F: '{ print $3 }'`"
 
60
 
54
61
# The Mandos network client uses the network
55
62
auto_add_modules net
56
63
# The Mandos network client uses IPv6
62
69
PLUGINDIR="${MANDOSDIR}/plugins.d"
63
70
 
64
71
# Make directories
65
 
mkdir --parents "${DESTDIR}${CONFDIR}"
66
 
mkdir --parents "${DESTDIR}${PLUGINDIR}"
 
72
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
 
73
        "${DESTDIR}${MANDOSDIR}"
 
74
install --owner=${mandos_user} --group=${mandos_group} --directory \
 
75
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
67
76
 
68
77
# Copy the Mandos plugin runner
69
78
copy_exec "$prefix"/lib/mandos/plugin-runner "${MANDOSDIR}"
100
109
    copy_exec /usr/bin/gpg
101
110
fi
102
111
 
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}"
 
112
# Config files
 
113
for file in /etc/mandos/*; do
 
114
    if [ -d "$file" ]; then
 
115
        continue
 
116
    fi
 
117
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
118
done
 
119
 
 
120
# Key files 
 
121
for file in  "$keydir"/*; do
 
122
    if [ -d "$file" ]; then
 
123
        continue
 
124
    fi
 
125
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
126
    chown ${mandos_user}:${mandos_group} \
 
127
        "${DESTDIR}${CONFDIR}/`basename \"$file\"`"
109
128
done
110
129
 
111
130
# /lib/mandos/plugin-runner will drop priviliges, but needs access to
120
139
# condition.  This umask is set by "initramfs-tools-hook-conf",
121
140
# installed as "/usr/share/initramfs-tools/conf-hooks.d/mandos".)
122
141
123
 
for full in "${PLUGINDIR}" "${CONFDIR}"; do
 
142
for full in "${MANDOSDIR}" "${CONFDIR}"; do
124
143
    while [ "$full" != "/" ]; do
125
144
        chmod a+rX "${DESTDIR}$full"
126
145
        full="`dirname \"$full\"`"
135
154
    fi
136
155
done
137
156
for dir in /lib /usr/lib; do
138
 
    find "${DESTDIR}$dir" \! -perm /u+rw,g+r -prune -o -print0 \
 
157
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -o -print0 \
139
158
        | xargs --null --no-run-if-empty chmod a+rX
140
159
done