Skip to content

Commit

Permalink
Fix Path to bird.conf with bird2
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolffy committed Dec 13, 2021
1 parent c3ed941 commit c722eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bird_bgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def OnUpdate(ax, axd, state):
print('bird-bgp-agent AgentX starting')

bird = BirdAgent(
os.environ.get("BIRDCONF") or "/etc/bird/bird.conf",
os.environ.get("BIRDCONF") or "/etc/bird.conf",
os.environ.get("BIRDCLI") or "/usr/sbin/birdc",
os.environ.get("SSCMD") or "ss -tan -o state established '( dport = :bgp or sport = :bgp )'")

Expand Down

0 comments on commit c722eef

Please sign in to comment.