289
286
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
292
# Uses nested functions
293
plugin-runner: LDFLAGS += -Xlinker --no-warn-execstack
294
dracut-module/password-agent: LDFLAGS += -Xlinker --no-warn-execstack
295
plugins.d/password-prompt: LDFLAGS += -Xlinker --no-warn-execstack
296
plugins.d/mandos-client: LDFLAGS += -Xlinker --no-warn-execstack
297
plugins.d/plymouth: LDFLAGS += -Xlinker --no-warn-execstack
299
289
# Need to add the GnuTLS, Avahi and GPGME libraries
300
290
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
301
291
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
383
373
# Used by run-server
384
374
confdir/mandos.conf: mandos.conf
385
install -D --mode=u=rw,go=r $^ $@
375
install --directory confdir
376
install --mode=u=rw,go=r $^ $@
386
377
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
387
install -D --mode=u=rw $< $@
378
install --directory confdir
379
install --mode=u=rw $< $@
388
380
# Add a client password
389
381
./mandos-keygen --dir keydir --password --no-ssh >> $@
396
388
.PHONY: install-html
397
389
install-html: html
398
install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
390
install --directory $(htmldir)
391
install --mode=u=rw,go=r --target-directory=$(htmldir) \
401
394
.PHONY: install-server
402
395
install-server: doc
396
install --directory $(CONFDIR)
403
397
if install --directory --mode=u=rwx --owner=$(USER) \
404
398
--group=$(GROUP) $(STATEDIR); then \
406
400
elif install --directory --mode=u=rwx $(STATEDIR); then \
407
401
chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
409
if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
410
install -D --mode=u=rw,go=r tmpfiles.d-mandos.conf \
403
if [ "$(TMPFILES)" != "$(DESTDIR)" \
404
-a -d "$(TMPFILES)" ]; then \
405
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
411
406
$(TMPFILES)/mandos.conf; \
413
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
414
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
408
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
409
-a -d "$(SYSUSERS)" ]; then \
410
install --mode=u=rw,go=r sysusers.d-mandos.conf \
415
411
$(SYSUSERS)/mandos.conf; \
417
install --directory $(PREFIX)/sbin
418
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
413
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
420
414
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
422
416
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
424
install --directory $(CONFDIR)
425
418
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
427
420
install --mode=u=rw --target-directory=$(CONFDIR) \
429
install -D --mode=u=rw,go=r dbus-mandos.conf \
430
$(DBUSPOLICYDIR)/mandos.conf
431
install -D --mode=u=rwx,go=rx init.d-mandos \
422
install --mode=u=rw,go=r dbus-mandos.conf \
423
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf
424
install --mode=u=rwx,go=rx init.d-mandos \
432
425
$(DESTDIR)/etc/init.d/mandos
433
if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
434
install -D --mode=u=rw,go=r mandos.service \
426
if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
427
install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
437
install -D --mode=u=rw,go=r default-mandos \
429
install --mode=u=rw,go=r default-mandos \
438
430
$(DESTDIR)/etc/default/mandos
439
431
if [ -z $(DESTDIR) ]; then \
440
432
update-rc.d mandos defaults 25 15;\
442
install --directory $(MANDIR)/man8 $(MANDIR)/man5
443
434
gzip --best --to-stdout mandos.8 \
444
435
> $(MANDIR)/man8/mandos.8.gz
445
436
gzip --best --to-stdout mandos-monitor.8 \
456
447
.PHONY: install-client-nokey
457
448
install-client-nokey: all doc
449
install --directory $(LIBDIR)/mandos $(CONFDIR)
458
450
install --directory --mode=u=rwx $(KEYDIR) \
459
451
$(LIBDIR)/mandos/plugins.d \
460
452
$(LIBDIR)/mandos/plugin-helpers
461
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
462
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
453
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
454
-a -d "$(SYSUSERS)" ]; then \
455
install --mode=u=rw,go=r sysusers.d-mandos.conf \
463
456
$(SYSUSERS)/mandos-client.conf; \
465
458
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
466
install --directory \
467
--mode=u=rwx "$(CONFDIR)/plugins.d" \
459
install --mode=u=rwx \
460
--directory "$(CONFDIR)/plugins.d" \
468
461
"$(CONFDIR)/plugin-helpers"; \
470
install --directory --mode=u=rwx,go=rx \
463
install --mode=u=rwx,go=rx --directory \
471
464
"$(CONFDIR)/network-hooks.d"
472
465
install --mode=u=rwx,go=rx \
473
466
--target-directory=$(LIBDIR)/mandos plugin-runner
474
467
install --mode=u=rwx,go=rx \
475
468
--target-directory=$(LIBDIR)/mandos \
476
469
mandos-to-cryptroot-unlock
477
install --directory $(PREFIX)/sbin
478
470
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
480
472
install --mode=u=rwx,go=rx \
498
490
install --mode=u=rwx,go=rx \
499
491
--target-directory=$(LIBDIR)/mandos/plugin-helpers \
500
492
plugin-helpers/mandos-client-iprouteadddel
501
install -D initramfs-tools-hook \
493
install initramfs-tools-hook \
502
494
$(INITRAMFSTOOLS)/hooks/mandos
503
install -D --mode=u=rw,go=r initramfs-tools-conf \
495
install --mode=u=rw,go=r initramfs-tools-conf \
504
496
$(INITRAMFSTOOLS)/conf.d/mandos-conf
505
install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
497
install --mode=u=rw,go=r initramfs-tools-conf-hook \
506
498
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
507
install -D initramfs-tools-script \
499
install initramfs-tools-script \
508
500
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
509
install -D initramfs-tools-script-stop \
501
install initramfs-tools-script-stop \
510
502
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
511
install -D --mode=u=rw,go=r \
512
--target-directory=$(DRACUTMODULE) \
503
install --directory $(DRACUTMODULE)
504
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
513
505
dracut-module/ask-password-mandos.path \
514
506
dracut-module/ask-password-mandos.service
515
507
install --mode=u=rwxs,go=rx \