/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: 2013-10-27 00:59:22 UTC
  • Revision ID: teddy@recompile.se-20131027005922-3q2161l63mtxii9u
Add systemd service support for Mandos server.

* Makefile (SYSTEMD): New; systemd system unit directory.
  (install-server): Install mandos.service.
  (purge-server): Remove mandos.service.
* debian/control (Build-Depends): Added "systemd".
* init.d-mandos (Description): Updated.
* mandos.service: New.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
STATEDIR=$(DESTDIR)/var/lib/mandos
48
48
##
49
49
 
 
50
SYSTEMD=$(DESTDIR)$(shell pkg-config systemd --variable=systemdsystemunitdir)
 
51
 
50
52
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
51
53
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
52
54
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
307
309
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
308
310
        install --mode=u=rwx,go=rx init.d-mandos \
309
311
                $(DESTDIR)/etc/init.d/mandos
 
312
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
 
313
                install --mode=u=rw,go=r mandos.service $(SYSTEMD) \
 
314
        fi
310
315
        install --mode=u=rw,go=r default-mandos \
311
316
                $(DESTDIR)/etc/default/mandos
312
317
        if [ -z $(DESTDIR) ]; then \
436
441
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
437
442
                $(DESTDIR)/etc/default/mandos \
438
443
                $(DESTDIR)/etc/init.d/mandos \
 
444
                $(SYSTEMD)/mandos.service \
439
445
                $(DESTDIR)/run/mandos.pid \
440
446
                $(DESTDIR)/var/run/mandos.pid
441
447
        -rmdir $(CONFDIR)