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

  • Committer: Teddy Hogeborn
  • Date: 2011-09-18 15:59:05 UTC
  • mfrom: (24.1.179 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20110918155905-ngj2ig0yheralj1s
* DBUS-API: Document new "Expires" and "ExtendedTimeout" properties.
* README: Refer to the installed manual page more simply.
* mandos (Client.extended_timeout, Client.expires): New attributes.
  (Client.extended_timeout_milliseconds): New.
  (Client.__init__, Client.enable, Client.disable): Set new attributes.
  (Client.checked_ok): Take new "timeout" argument.
  (ClientDBus.expires): Transform into a property which sends a D-Bus
                        signal when changed.
  (ClientDBus._datetime_to_dbus): Return empty D-Bus string on None.
                                  All callers changed to use this.

  (ClientDBus.ApprovedByDefault_dbus_property,
  ClientDBus.ApprovalDelay_dbus_property,
  ClientDBus.ApprovalDuration_dbus_property,
  ClientDBus.Host_dbus_property, ClientDBus.Timeout_dbus_property,
  ClientDBus.Interval_dbus_property,
  ClientDBus.Checker_dbus_property): Bug fix: Only send D-Bus signal
                                     if new value is different.
  (ClientDBus.Timeout_dbus_property): Use new "expires" attribute.
  (ClientDBus.Expires_dbus_property,
  ClientDBus.ExtendedTimeout_dbus_property): New D-Bus properties.
  (ClientHandler.handle): Bump time using extended_timeout value.
  (main.client_defaults): Change default values of "timeout" and
                          "interval", added new default value for
                          "extended_timeout".
* mandos-clients.conf.xml (OPTIONS): Changed default values of
                                     "interval" and "timeout".  Add
                                     new "extended_timeout" option.
  (EXAMPLE): Updated default values.
* mandos-ctl: Show new "ExtendedTimeout" D-Bus property and change it
              using new "--extended-timeout" option.
* mandos-ctl.xml (SYNOPSIS, OPTIONS): Document new
                                      "--extended-timeout" option.
* mandos-monitor (MandosClientWidget.update): Use new "Expires" D-Bus
                                              property.
* mandos.xml (DESCRIPTION): Add reference to intro(8mandos) manual
                            page.
  (CHECKING): Refer to the new "extended_timeout" option in
  clients.conf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
WARN=-O -Wall -Wformat=2 -Winit-self -Wmissing-include-dirs \
2
2
        -Wswitch-default -Wswitch-enum -Wunused-parameter \
3
 
        -Wstrict-aliasing=2 -Wextra -Wfloat-equal -Wundef -Wshadow \
 
3
        -Wstrict-aliasing=1 -Wextra -Wfloat-equal -Wundef -Wshadow \
4
4
        -Wunsafe-loop-optimizations -Wpointer-arith \
5
5
        -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings \
6
6
        -Wconversion -Wstrict-prototypes -Wold-style-definition \
8
8
#       -Wunreachable-code 
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
 
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
 
FORTIFY=-D_FORTIFY_SOURCE=2 # -fstack-protector-all
 
11
# <http://www.kernel.org/doc/man-pages/online/pages/man7/feature_test_macros.7.html>
 
12
# and <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
 
13
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
 
14
LINK_FORTIFY_LD=-z relro -z now
 
15
LINK_FORTIFY=
 
16
 
 
17
# If BROKEN_PIE is set, do not build with -pie
 
18
ifndef BROKEN_PIE
 
19
FORTIFY += -fPIE
 
20
LINK_FORTIFY += -pie
 
21
endif
13
22
#COVERAGE=--coverage
14
23
OPTIMIZE=-Os
15
24
LANGUAGE=-std=gnu99
 
25
htmldir=man
 
26
version=1.3.1
 
27
SED=sed
16
28
 
17
29
## Use these settings for a traditional /usr/local install
18
30
# PREFIX=$(DESTDIR)/usr/local
30
42
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
31
43
##
32
44
 
33
 
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
34
 
GNUTLS_LIBS=$(shell libgnutls-config --libs)
 
45
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
 
46
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
35
47
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
36
48
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
37
 
GPGME_CFLAGS=$(shell gpgme-config --cflags)
38
 
GPGME_LIBS=$(shell gpgme-config --libs)
 
49
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
 
50
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
 
51
        getconf LFS_LDFLAGS)
39
52
 
40
53
# Do not change these two
41
54
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
42
 
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
43
 
LDFLAGS=$(COVERAGE)
 
55
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
 
56
        -DVERSION='"$(version)"'
 
57
LDFLAGS=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
44
58
 
45
59
# Commands to format a DocBook <refentry> document into a manual page
46
 
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
 
60
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
47
61
        --param man.charmap.use.subset          0 \
48
62
        --param make.year.ranges                1 \
49
63
        --param make.single.year.ranges         1 \
51
65
        --param man.authors.section.enabled     0 \
52
66
         /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
53
67
        $(notdir $<); \
54
 
        $(MANPOST) $(notdir $@)
 
68
        $(MANPOST) $(notdir $@))
55
69
# DocBook-to-man post-processing to fix a '\n' escape bug
56
 
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
 
70
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
57
71
 
58
 
DOCBOOKTOHTML=xsltproc --nonet --xinclude \
 
72
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
59
73
        --param make.year.ranges                1 \
60
74
        --param make.single.year.ranges         1 \
61
75
        --param man.output.quietly              1 \
63
77
        --param citerefentry.link               1 \
64
78
        --output $@ \
65
79
        /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
66
 
        $<; $(HTMLPOST) $@
 
80
        $<; $(HTMLPOST) $@)
67
81
# Fix citerefentry links
68
 
HTMLPOST=sed --in-place --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
 
82
HTMLPOST=$(SED) --in-place \
 
83
        --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
69
84
 
70
85
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
71
 
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
72
 
PROGS=plugin-runner $(PLUGINS)
73
 
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
 
86
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo \
 
87
        plugins.d/plymouth
 
88
CPROGS=plugin-runner $(PLUGINS)
 
89
PROGS=mandos mandos-keygen mandos-ctl mandos-monitor $(CPROGS)
 
90
DOCS=mandos.8 mandos-keygen.8 mandos-monitor.8 mandos-ctl.8 \
 
91
        mandos.conf.5 mandos-clients.conf.5 plugin-runner.8mandos \
74
92
        plugins.d/mandos-client.8mandos \
75
 
        plugins.d/password-prompt.8mandos mandos.conf.5 \
76
 
        mandos-clients.conf.5
 
93
        plugins.d/password-prompt.8mandos plugins.d/usplash.8mandos \
 
94
        plugins.d/splashy.8mandos plugins.d/askpass-fifo.8mandos \
 
95
        plugins.d/plymouth.8mandos intro.8mandos
77
96
 
78
97
htmldocs=$(addsuffix .xhtml,$(DOCS))
79
98
 
80
 
objects=$(addsuffix .o,$(PROGS))
 
99
objects=$(addsuffix .o,$(CPROGS))
81
100
 
82
 
all: $(PROGS)
 
101
all: $(PROGS) mandos.lsm
83
102
 
84
103
doc: $(DOCS)
85
104
 
86
105
html: $(htmldocs)
87
106
 
88
 
%.5: %.xml legalnotice.xml
89
 
        $(DOCBOOKTOMAN)
90
 
%.5.xhtml: %.xml legalnotice.xml
91
 
        $(DOCBOOKTOHTML)
92
 
 
93
 
%.8: %.xml legalnotice.xml
94
 
        $(DOCBOOKTOMAN)
95
 
%.8.xhtml: %.xml legalnotice.xml
96
 
        $(DOCBOOKTOHTML)
97
 
 
98
 
%.8mandos: %.xml legalnotice.xml
99
 
        $(DOCBOOKTOMAN)
100
 
%.8mandos.xhtml: %.xml legalnotice.xml
101
 
        $(DOCBOOKTOHTML)
102
 
 
103
 
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
104
 
        $(DOCBOOKTOMAN)
105
 
mandos.8.xhtml: mandos.xml mandos-options.xml overview.xml \
106
 
                legalnotice.xml
107
 
        $(DOCBOOKTOHTML)
108
 
 
109
 
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
110
 
        $(DOCBOOKTOMAN)
111
 
mandos-keygen.8.xhtml: mandos-keygen.xml overview.xml legalnotice.xml
112
 
        $(DOCBOOKTOHTML)
113
 
 
114
 
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
115
 
        $(DOCBOOKTOMAN)
116
 
mandos.conf.5.xhtml: mandos.conf.xml mandos-options.xml legalnotice.xml
117
 
        $(DOCBOOKTOHTML)
118
 
 
119
 
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.xml
120
 
        $(DOCBOOKTOMAN)
121
 
plugin-runner.8mandos.xhtml: plugin-runner.xml overview.xml \
122
 
                legalnotice.xml
 
107
%.5: %.xml common.ent legalnotice.xml
 
108
        $(DOCBOOKTOMAN)
 
109
%.5.xhtml: %.xml common.ent legalnotice.xml
 
110
        $(DOCBOOKTOHTML)
 
111
 
 
112
%.8: %.xml common.ent legalnotice.xml
 
113
        $(DOCBOOKTOMAN)
 
114
%.8.xhtml: %.xml common.ent legalnotice.xml
 
115
        $(DOCBOOKTOHTML)
 
116
 
 
117
%.8mandos: %.xml common.ent legalnotice.xml
 
118
        $(DOCBOOKTOMAN)
 
119
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
 
120
        $(DOCBOOKTOHTML)
 
121
 
 
122
intro.8mandos: intro.xml common.ent legalnotice.xml
 
123
        $(DOCBOOKTOMAN)
 
124
intro.8mandos.xhtml: intro.xml common.ent legalnotice.xml
 
125
        $(DOCBOOKTOHTML)
 
126
 
 
127
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
 
128
                legalnotice.xml
 
129
        $(DOCBOOKTOMAN)
 
130
mandos.8.xhtml: mandos.xml common.ent mandos-options.xml \
 
131
                overview.xml legalnotice.xml
 
132
        $(DOCBOOKTOHTML)
 
133
 
 
134
mandos-keygen.8: mandos-keygen.xml common.ent overview.xml \
 
135
                legalnotice.xml
 
136
        $(DOCBOOKTOMAN)
 
137
mandos-keygen.8.xhtml: mandos-keygen.xml common.ent overview.xml \
 
138
                 legalnotice.xml
 
139
        $(DOCBOOKTOHTML)
 
140
 
 
141
mandos-monitor.8: mandos-monitor.xml common.ent overview.xml \
 
142
                legalnotice.xml
 
143
        $(DOCBOOKTOMAN)
 
144
mandos-monitor.8.xhtml: mandos-monitor.xml common.ent overview.xml \
 
145
                 legalnotice.xml
 
146
        $(DOCBOOKTOHTML)
 
147
 
 
148
mandos-ctl.8: mandos-ctl.xml common.ent overview.xml \
 
149
                legalnotice.xml
 
150
        $(DOCBOOKTOMAN)
 
151
mandos-ctl.8.xhtml: mandos-ctl.xml common.ent overview.xml \
 
152
                 legalnotice.xml
 
153
        $(DOCBOOKTOHTML)
 
154
 
 
155
mandos.conf.5: mandos.conf.xml common.ent mandos-options.xml \
 
156
                legalnotice.xml
 
157
        $(DOCBOOKTOMAN)
 
158
mandos.conf.5.xhtml: mandos.conf.xml common.ent mandos-options.xml \
 
159
                legalnotice.xml
 
160
        $(DOCBOOKTOHTML)
 
161
 
 
162
plugin-runner.8mandos: plugin-runner.xml common.ent overview.xml \
 
163
                legalnotice.xml
 
164
        $(DOCBOOKTOMAN)
 
165
plugin-runner.8mandos.xhtml: plugin-runner.xml common.ent \
 
166
                overview.xml legalnotice.xml
123
167
        $(DOCBOOKTOHTML)
124
168
 
125
169
plugins.d/mandos-client.8mandos: plugins.d/mandos-client.xml \
 
170
                                        common.ent \
126
171
                                        mandos-options.xml \
127
172
                                        overview.xml legalnotice.xml
128
173
        $(DOCBOOKTOMAN)
129
174
plugins.d/mandos-client.8mandos.xhtml: plugins.d/mandos-client.xml \
 
175
                                        common.ent \
130
176
                                        mandos-options.xml \
131
177
                                        overview.xml legalnotice.xml
132
178
        $(DOCBOOKTOHTML)
133
179
 
134
 
plugins.d/mandos-client: plugins.d/mandos-client.o
135
 
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
136
 
                $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
180
# Update all these files with version number $(version)
 
181
common.ent: Makefile
 
182
        $(strip $(SED) --in-place \
 
183
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
 
184
                $@)
 
185
 
 
186
mandos: Makefile
 
187
        $(strip $(SED) --in-place \
 
188
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
189
                $@)
 
190
 
 
191
mandos-keygen: Makefile
 
192
        $(strip $(SED) --in-place \
 
193
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
 
194
                $@)
 
195
 
 
196
mandos-ctl: Makefile
 
197
        $(strip $(SED) --in-place \
 
198
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
199
                $@)
 
200
 
 
201
mandos-monitor: Makefile
 
202
        $(strip $(SED) --in-place \
 
203
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
204
                $@)
 
205
 
 
206
mandos.lsm: Makefile
 
207
        $(strip $(SED) --in-place \
 
208
                --expression='s/^\(Version:\).*/\1\t$(version)/' \
 
209
                $@)
 
210
        $(strip $(SED) --in-place \
 
211
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
 
212
                $@)
 
213
        $(strip $(SED) --in-place \
 
214
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
 
215
                $@)
 
216
 
 
217
plugins.d/mandos-client: plugins.d/mandos-client.c
 
218
        $(LINK.c) $^ -lrt $(GNUTLS_LIBS) $(AVAHI_LIBS) $(strip\
 
219
                ) $(GPGME_LIBS) $(LOADLIBES) $(LDLIBS) -o $@
137
220
 
138
221
.PHONY : all doc html clean distclean run-client run-server install \
139
222
        install-server install-client uninstall uninstall-server \
140
223
        uninstall-client purge purge-server purge-client
141
224
 
142
225
clean:
143
 
        -rm --force $(PROGS) $(objects) $(htmldocs) $(DOCS) core
 
226
        -rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
144
227
 
145
228
distclean: clean
146
229
mostlyclean: clean
147
230
maintainer-clean: clean
148
231
        -rm --force --recursive keydir confdir
149
232
 
150
 
check:
 
233
check:  all
151
234
        ./mandos --check
152
235
 
153
236
# Run the client with a local config and key
154
237
run-client: all keydir/seckey.txt keydir/pubkey.txt
 
238
        @echo "###################################################################"
 
239
        @echo "# The following error messages are harmless and can be safely     #"
 
240
        @echo "# ignored.  The messages are caused by not running as root, but   #"
 
241
        @echo "# you should NOT run \"make run-client\" as root unless you also    #"
 
242
        @echo "# unpacked and compiled Mandos as root, which is NOT recommended. #"
 
243
        @echo "# From plugin-runner: setuid: Operation not permitted             #"
 
244
        @echo "# From askpass-fifo:  mkfifo: Permission denied                   #"
 
245
        @echo "# From mandos-client: setuid: Operation not permitted             #"
 
246
        @echo "#                     seteuid: Operation not permitted            #"
 
247
        @echo "#                     klogctl: Operation not permitted            #"
 
248
        @echo "###################################################################"
155
249
        ./plugin-runner --plugin-dir=plugins.d \
156
250
                --config-file=plugin-runner.conf \
157
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
251
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
 
252
                $(CLIENTARGS)
158
253
 
159
254
# Used by run-client
160
255
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
163
258
 
164
259
# Run the server with a local config
165
260
run-server: confdir/mandos.conf confdir/clients.conf
166
 
        ./mandos --debug --configdir=confdir
 
261
        @echo "#################################################################"
 
262
        @echo "# NOTE: Please IGNORE the error about \"Could not open file      #"
 
263
        @echo "# u'/var/run/mandos.pid'\" -  it is harmless and is caused by    #"
 
264
        @echo "# the server not running as root.  Do NOT run \"make run-server\" #"
 
265
        @echo "# server as root if you didn't also unpack and compile it thus. #"
 
266
        @echo "#################################################################"
 
267
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
167
268
 
168
269
# Used by run-server
169
270
confdir/mandos.conf: mandos.conf
177
278
 
178
279
install: install-server install-client-nokey
179
280
 
180
 
install-html: $(htmldocs)
181
 
        install --directory man
182
 
        install --mode=u=rw,go=r --target-directory=man $(htmldocs)
 
281
install-html: html
 
282
        install --directory $(htmldir)
 
283
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
 
284
                $(htmldocs)
183
285
 
184
286
install-server: doc
185
287
        install --directory $(CONFDIR)
186
288
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
 
289
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
 
290
                mandos-ctl
 
291
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
 
292
                mandos-monitor
187
293
        install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
188
294
                mandos.conf
189
295
        install --mode=u=rw --target-directory=$(CONFDIR) \
190
296
                clients.conf
 
297
        install --mode=u=rw,go=r dbus-mandos.conf \
 
298
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
191
299
        install --mode=u=rwx,go=rx init.d-mandos \
192
300
                $(DESTDIR)/etc/init.d/mandos
193
301
        install --mode=u=rw,go=r default-mandos \
197
305
        fi
198
306
        gzip --best --to-stdout mandos.8 \
199
307
                > $(MANDIR)/man8/mandos.8.gz
 
308
        gzip --best --to-stdout mandos-monitor.8 \
 
309
                > $(MANDIR)/man8/mandos-monitor.8.gz
 
310
        gzip --best --to-stdout mandos-ctl.8 \
 
311
                > $(MANDIR)/man8/mandos-ctl.8.gz
200
312
        gzip --best --to-stdout mandos.conf.5 \
201
313
                > $(MANDIR)/man5/mandos.conf.5.gz
202
314
        gzip --best --to-stdout mandos-clients.conf.5 \
229
341
        install --mode=u=rwxs,go=rx \
230
342
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
231
343
                plugins.d/askpass-fifo
 
344
        install --mode=u=rwxs,go=rx \
 
345
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
 
346
                plugins.d/plymouth
232
347
        install initramfs-tools-hook \
233
348
                $(INITRAMFSTOOLS)/hooks/mandos
234
349
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
235
350
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
236
351
        install initramfs-tools-script \
237
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
 
352
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
238
353
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
239
354
        gzip --best --to-stdout mandos-keygen.8 \
240
355
                > $(MANDIR)/man8/mandos-keygen.8.gz
241
356
        gzip --best --to-stdout plugin-runner.8mandos \
242
357
                > $(MANDIR)/man8/plugin-runner.8mandos.gz
 
358
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
 
359
                > $(MANDIR)/man8/mandos-client.8mandos.gz
243
360
        gzip --best --to-stdout plugins.d/password-prompt.8mandos \
244
361
                > $(MANDIR)/man8/password-prompt.8mandos.gz
245
 
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
246
 
                > $(MANDIR)/man8/mandos-client.8mandos.gz
 
362
        gzip --best --to-stdout plugins.d/usplash.8mandos \
 
363
                > $(MANDIR)/man8/usplash.8mandos.gz
 
364
        gzip --best --to-stdout plugins.d/splashy.8mandos \
 
365
                > $(MANDIR)/man8/splashy.8mandos.gz
 
366
        gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
 
367
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
 
368
        gzip --best --to-stdout plugins.d/plymouth.8mandos \
 
369
                > $(MANDIR)/man8/plymouth.8mandos.gz
247
370
 
248
371
install-client: install-client-nokey
249
372
# Post-installation stuff
255
378
 
256
379
uninstall-server:
257
380
        -rm --force $(PREFIX)/sbin/mandos \
 
381
                $(PREFIX)/sbin/mandos-ctl \
 
382
                $(PREFIX)/sbin/mandos-monitor \
258
383
                $(MANDIR)/man8/mandos.8.gz \
 
384
                $(MANDIR)/man8/mandos-monitor.8.gz \
 
385
                $(MANDIR)/man8/mandos-ctl.8.gz \
259
386
                $(MANDIR)/man5/mandos.conf.5.gz \
260
387
                $(MANDIR)/man5/mandos-clients.conf.5.gz
261
388
        update-rc.d -f mandos remove
272
399
                $(PREFIX)/lib/mandos/plugins.d/mandos-client \
273
400
                $(PREFIX)/lib/mandos/plugins.d/usplash \
274
401
                $(PREFIX)/lib/mandos/plugins.d/splashy \
 
402
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
 
403
                $(PREFIX)/lib/mandos/plugins.d/plymouth \
275
404
                $(INITRAMFSTOOLS)/hooks/mandos \
276
405
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
277
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
 
406
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
 
407
                $(MANDIR)/man8/mandos-keygen.8.gz \
278
408
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
279
 
                $(MANDIR)/man8/mandos-keygen.8.gz \
 
409
                $(MANDIR)/man8/mandos-client.8mandos.gz
280
410
                $(MANDIR)/man8/password-prompt.8mandos.gz \
281
 
                $(MANDIR)/man8/mandos-client.8mandos.gz
282
 
        if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
283
 
                rm --force $(CONFDIR)/plugins.d/README; \
284
 
        fi
 
411
                $(MANDIR)/man8/usplash.8mandos.gz \
 
412
                $(MANDIR)/man8/splashy.8mandos.gz \
 
413
                $(MANDIR)/man8/askpass-fifo.8mandos.gz \
 
414
                $(MANDIR)/man8/plymouth.8mandos.gz \
285
415
        -rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
286
416
                 $(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
287
417
        update-initramfs -k all -u
290
420
 
291
421
purge-server: uninstall-server
292
422
        -rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
 
423
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
293
424
                $(DESTDIR)/etc/default/mandos \
294
425
                $(DESTDIR)/etc/init.d/mandos \
295
426
                $(DESTDIR)/var/run/mandos.pid