diff options
author | David Ward <david.ward@ll.mit.edu> | 2012-04-29 16:47:08 -0400 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2012-05-01 17:51:26 +0200 |
commit | 4b5a2103b7d03b9209cfa3668d9cebead697bc82 (patch) | |
tree | 7b7114210e3eedb9987f837c77d8a4121d495973 /redhat/zebra.service | |
parent | a41242bed823db77186ed7d11953cffaa0c3b733 (diff) |
redhat: add systemd service files
* redhat/*.service: add systemd service file for each routing daemon
* redhat/quagga.sysconfig: add comment about watchquagga and systemd
* redhat/Makefile.am: add systemd service files to distribution
Signed-off-by: David Ward <david.ward@ll.mit.edu>
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'redhat/zebra.service')
-rw-r--r-- | redhat/zebra.service | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/redhat/zebra.service b/redhat/zebra.service new file mode 100644 index 00000000..27c3a522 --- /dev/null +++ b/redhat/zebra.service @@ -0,0 +1,14 @@ +[Unit] +Description=GNU Zebra routing manager +After=syslog.target network.target +ConditionPathExists=/etc/quagga/zebra.conf + +[Service] +Type=forking +EnvironmentFile=-/etc/sysconfig/quagga +ExecStartPre=/sbin/ip route flush proto zebra +ExecStart=/usr/sbin/zebra -d $ZEBRA_OPTS -f /etc/quagga/zebra.conf +Restart=on-abort + +[Install] +WantedBy=network.target |