~ubuntu-branches/ubuntu/precise/wpasupplicant/precise-security

« back to all changes in this revision

Viewing changes to debian/wpasupplicant.postinst

  • Committer: Package Import Robot
  • Author(s): Stefan Lippers-Hollmann, Kel Modderman, Stefan Lippers-Hollmann
  • Date: 2011-09-26 23:30:00 UTC
  • mfrom: (5.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20110926233000-hcrc2cbhueypqfbb
Tags: 0.7.3-4
[ Kel Modderman ]
* Support /run/sendsigs.omit.d/ (Closes: #633040):
  - depend on initscripts (>= 2.88dsf-13.3)
  - create new omission pid files in /run/sendsigs.omit.d/ unconditionally
  - migrate existing omission pid files from /lib/init/rw/ to
    /run/sendsigs.omit.d/
* ACK NMU (Closes: #610931)
  - add wpasupplicant-udeb
  - build against libnl3
* Improve integration of the udeb addition with existing debian/rules:
  - build the required binary in the build target in similar way to standard
    package build
  - install binary manually in dh_auto_install override rather than
    wpasupplicant-udeb.install to handle renaming of binary
  - sync udeb CFLAGS with the standard build
  - allow potential for non-linux udebs, add a kfreebsd udeb configuration
    snippet
* Filter the numerous hyphen-used-as-minus-sign informational messages
  from lintian output.
* Add preferred options to debian/source/local-options to assist with quilt
  patch management.
* Add patch for wpa_gui-qt4 which displays scan results signal strength in
  dBm with bar indicator. (Closes: #630681)

[ Stefan Lippers-Hollmann ]
* make wpasupplicant-udeb arch=any, an initial kfreebsd udeb config is now
  provided as well.
* use Package-Type instead of XC-Package-Type for wpasupplicant-udeb,
  dpkg-dev >1.15.7 is available in squeeze.
* add a dependency on ${misc:Depends} for the udeb package as well.
* adapt debian/copyright to recent changes (r174) in DEP-5 and use the new
  anonscm URL.
* don't use /run/sendsigs.omit.d/ if it hasn't already been created by
  mountkernfs.sh (e.g. when using systemd), thanks to Michael Biebl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
                if ! getent group netdev >/dev/null; then
24
24
                        addgroup --quiet --system netdev || true
25
25
                fi
 
26
 
 
27
                # Migrate existing sendsigs omission pid files to /run
 
28
                if [ -d /run/sendsigs.omit.d/ ] && \
 
29
                   [ -d /lib/init/rw/sendsigs.omit.d/ ]; then
 
30
                        for f in /lib/init/rw/sendsigs.omit.d/wpasupplicant.*.pid
 
31
                        do
 
32
                                if [ -f "$f" ]; then
 
33
                                        mv "$f" /run/sendsigs.omit.d/
 
34
                                fi
 
35
                        done
 
36
                fi
26
37
                ;;
27
38
        abort-upgrade|abort-deconfigure|abort-remove)
28
39
                ;;