Skip to content

Bug - Capturing BGP Peers task fails because FRR it's not reloaded and BGPD not started #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
venv/
.vscode
.ansible
.trunk
1 change: 1 addition & 0 deletions handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
cmd: 'vtysh -c "clear ip bgp * soft out"'
become: true
listen: "clear bgp frr"
changed_when: false
when: frr_clear_bgp_on_change

## Quagga restart
Expand Down
2 changes: 1 addition & 1 deletion molecule/debian11/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
hosts: all
tasks:
- name: Example assertion
assert:
ansible.builtin.assert:
that: true
2 changes: 1 addition & 1 deletion molecule/debian12/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
hosts: all
tasks:
- name: Example assertion
assert:
ansible.builtin.assert:
that: true
2 changes: 1 addition & 1 deletion molecule/ubuntu2204/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
hosts: all
tasks:
- name: Example assertion
assert:
ansible.builtin.assert:
that: true
2 changes: 1 addition & 1 deletion molecule/ubuntu2404/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
hosts: all
tasks:
- name: Example assertion
assert:
ansible.builtin.assert:
that: true
Empty file modified requirements-dev.in
100644 → 100755
Empty file.
Empty file modified requirements-dev.txt
100644 → 100755
Empty file.
Empty file modified requirements.in
100644 → 100755
Empty file.
Empty file modified requirements.txt
100644 → 100755
Empty file.
Empty file modified requirements.yml
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
- name: Include config tasks
ansible.builtin.include_tasks: config.yml

- name: Flush handlers
ansible.builtin.meta: flush_handlers

- name: Include monitoring tasks
ansible.builtin.include_tasks: monitor.yml
when:
Expand Down