/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-conf

  • Committer: Teddy Hogeborn
  • Date: 2009-08-27 23:12:09 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090827231209-ry9loqws0gr7ze4g
* plugins.d/mandos-client.c (quit_now): Move up declaration before
                                        first use.
  (resolve_callback, ): Check "quit_now" flag.
  (main): Renamed "interface_taken_up" to "take_down_interface" for
          clarity.  Check existence of interface before taking it up.
          Set "take_down_interface" and "tempdir_created" flags before
          any action is taken, to make sure cleanup is never missed.
          Check "quit_now" flag throughout.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- shell-script -*-
 
2
 
 
3
# if mkinitramfs is started by mkinitramfs-kpkg, mkinitramfs-kpkg has
 
4
# already touched the initrd file with umask 022 before we had a
 
5
# chance to affect it.  We cannot allow a readable initrd file,
 
6
# therefore we must fix this now.
 
7
if [ -e "${outfile}" ] \
 
8
    && [ `stat --format=%s "${outfile}"` -eq 0 ]; then
 
9
    rm "${outfile}"
 
10
    (umask 027; touch "${outfile}")
 
11
fi
 
12
 
 
13
UMASK=027