17 lines
341 B
SYSTEMD
17 lines
341 B
SYSTEMD
|
[Unit]
|
||
|
Description=BGP routing daemon
|
||
|
Documentation=man:bgpd(8) man:zebra(8)
|
||
|
BindsTo=zebra.service
|
||
|
After=network.target zebra.service
|
||
|
ConditionPathExists=/etc/frr/bgpd.conf
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
PIDFile=/run/frr/bgpd.pid
|
||
|
ExecStart=/usr/sbin/bgpd -d
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
Restart=on-abort
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|