/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 mandos.service

  • Committer: Teddy Hogeborn
  • Date: 2013-10-27 17:42:23 UTC
  • Revision ID: teddy@recompile.se-20131027174223-mq3a1h8xi5jcv9e6
Bug fix: Make sure systemd service file is installed.

* Makefile (install-server): Fix typo causing syntax error.
* debian/mandos.dirs (lib/systemd/system): New.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[Unit]
2
2
Description=Server of encrypted passwords to Mandos clients
3
 
Documentation=man:intro(8mandos) man:mandos(8)
4
3
 
5
4
[Service]
6
 
BusName=se.recompile.Mandos
 
5
Type=simple
 
6
## Type=dbus is not appropriate, because Mandos also needs to announce
 
7
## its ZeroConf service and be reachable on the network.
 
8
#Type=dbus
 
9
#BusName=se.recompile.Mandos
7
10
ExecStart=/usr/sbin/mandos --foreground
8
11
Restart=always
9
 
KillMode=mixed
10
 
## Using socket activation won't work, because systemd always does
11
 
## bind() on the socket, and also won't announce the ZeroConf service.
 
12
KillMode=process
 
13
## Using socket activation won't work either, because systemd always
 
14
## does bind() on the socket, and also won't announce the ZeroConf
 
15
## service.
12
16
#ExecStart=/usr/sbin/mandos --foreground --socket=0
13
17
#StandardInput=socket
14
18