/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 debian/rules

  • Committer: Teddy Hogeborn
  • Date: 2009-01-08 03:54:06 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090108035406-01uqkv9xqgxlnw7c
Change the default value of the "checker" option command to make the
checker command be run-time dependent on the "host" client attribute
instead of reading it only once on startup:

* clients.conf (checker): Changed default commented-out value to
                          "fping -q -- %%(host)s".
* mandos (main): Changed default value for the "checker" config option
                 to "fping -q -- %%(host)s".
* mandos-clients.conf.xml (OPTIONS): Document changed default value.
  (EXAMPLE): Changed value of "checker".

* plugins.d/password-prompt.c: Whitespace changes only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# This has to be exported to make some magic below work.
16
16
export DH_OPTIONS
17
17
 
18
 
# -pie is broken on the mips and mipsel architectures, see
19
 
# <http://bugs.debian.org/526961>
20
 
ifneq (,$(findstring :$(DEB_HOST_ARCH):,:mips:mipsel:))
21
 
  BROKEN_PIE := yes
22
 
  export BROKEN_PIE
23
 
endif
24
 
ifneq (,$(findstring :$(DEB_BUILD_ARCH):,:mips:mipsel:))
25
 
  BROKEN_PIE := yes
26
 
  export BROKEN_PIE
27
 
endif
28
 
 
29
18
configure: configure-stamp
30
19
configure-stamp:
31
20
        dh_testdir
58
47
        dh_installdirs --indep
59
48
        $(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
60
49
        dh_lintian
61
 
        dh_installinit --onlyscripts \
 
50
        dh_installinit --onlyscripts --no-start \
62
51
                --update-rcd-params="defaults 25 15"
63
52
        dh_install --indep
64
53