AETHER-918 Initial commit of BIRD role
Change-Id: I00d3d893c2c571bb69aac3580f27e26afa0313fb
diff --git a/handlers/main.yml b/handlers/main.yml
new file mode 100644
index 0000000..195177d
--- /dev/null
+++ b/handlers/main.yml
@@ -0,0 +1,18 @@
+---
+# bird handlers/main.yml
+#
+# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+- name: start-bird
+ service:
+ name: "{{ bird_service }}"
+ state: started
+
+- name: reload-bird
+ command: birdc configure
+
+- name: restart-bird
+ service:
+ name: "{{ bird_service }}"
+ state: restarted