~ubuntu-branches/ubuntu/utopic/dropbear/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape, Matt Johnston, Gerrit Pape
  • Date: 2008-11-19 20:58:59 UTC
  • mfrom: (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20081119205859-dmeze0y6b16ia93v
Tags: 0.52-1
[ Matt Johnston ]
* New upstream release.
  * dbclient.1: mention optional 'command' argument (closes: #495823).

[ Gerrit Pape ]
* debian/diff/0001-dbclient.1-dbclient-uses-compression-if...diff:
  new; dbclient.1: dbclient uses compression if compiled with zlib
  support (thx Luca Capello, closes: #495825).
* debian/initramfs/*: new; cryptroot remote unlocking on boot feature
  (thx debian@x.ray.net).
* debian/rules: install debian/initramfs/* (thx debian@x.ray.net).
* debian/control: Suggests: udev (for cryptroot support, thx
  debian@x.ray.net).
* debian/dropbear.postinst: conditionally run update-initramfs -u
  (for cryptroot support, thx debian@x.ray.net. closes: #465903).
* debian/diff/0002-dropbearkey.8-mention-y-option-add-example.diff:
  new; mention -y option, add example (thx debian@x.ray.net).

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        install -d -m0755 '$(DIR)'/etc/dropbear/log
78
78
        install -m0755 debian/service/log '$(DIR)'/etc/dropbear/log/run
79
79
        ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main
 
80
        # cryptroot support (debian@x.ray.net)
 
81
        install -d -m0755 '$(DIR)'/usr/share/initramfs-tools/hooks
 
82
        install -m0755 debian/initramfs/dropbear-hook \
 
83
          '$(DIR)'/usr/share/initramfs-tools/hooks/dropbear
 
84
        install -d -m0755 \
 
85
          '$(DIR)'/usr/share/initramfs-tools/scripts/init-premount
 
86
        install -m0755 debian/initramfs/premount-devpts \
 
87
          '$(DIR)'/usr/share/initramfs-tools/scripts/init-premount/devpts
 
88
        install -m0755 debian/initramfs/premount-dropbear \
 
89
          '$(DIR)'/usr/share/initramfs-tools/scripts/init-premount/dropbear
 
90
        install -d -m0755 \
 
91
          '$(DIR)'/usr/share/initramfs-tools/scripts/init-bottom
 
92
        install -m0755 debian/initramfs/bottom-dropbear \
 
93
          '$(DIR)'/usr/share/initramfs-tools/scripts/init-bottom/dropbear
 
94
        install -d -m0755 '$(DIR)'/usr/share/initramfs-tools/conf-hooks.d
 
95
        install -m0644 debian/initramfs/dropbear-conf \
 
96
          '$(DIR)'/usr/share/initramfs-tools/conf-hooks.d/dropbear
80
97
        # man pages
81
98
        install -d -m0755 '$(DIR)'/usr/share/man/man8
82
99
        for i in dropbear.8 dropbearkey.8; do \