17 lines
348 B
SYSTEMD
17 lines
348 B
SYSTEMD
|
[Unit]
|
||
|
Description=GNU Zebra routing manager
|
||
|
Documentation=man:zebra(8)
|
||
|
After=network.target
|
||
|
ConditionPathExists=/etc/frr/zebra.conf
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
PIDFile=/run/frr/zebra.pid
|
||
|
ExecStartPre=/bin/ip route flush proto zebra
|
||
|
ExecStart=/usr/sbin/zebra -d
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
Restart=on-abort
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|