-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from zahodi/sample-rollback
add a sample backup and rollback task to use on production routers
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
################################################################ | ||
# TEMPORARY PLAYBOOK TO STORE THE ROLLBACK PROCEDURE | ||
####################################################################### | ||
|
||
################################################################### | ||
# create a backup and add a scheduler to rollback if we lose connection | ||
# to the a mikrotik device during the ansible run. | ||
# Place this in the begging of your playbook | ||
##################################################################### | ||
- name: run command module to create a backup | ||
mt_command: | ||
hostname: "{{ mt_hostname }}" | ||
username: "{{ mt_user }}" | ||
password: "{{ mt_pass }}" | ||
command: /system/backup/save | ||
command_arguments: | ||
name: pre_deploy | ||
password: 123 | ||
|
||
- name: add rollback scheduler task | ||
mt_system_scheduler: | ||
hostname: "{{ mt_hostname }}" | ||
username: "{{ mt_user }}" | ||
password: "{{ mt_pass }}" | ||
state: present | ||
name: rollback | ||
on_event: /system backup load name=pre_deploy.backup password=123 | ||
interval: 30m | ||
policy: | ||
- password | ||
- reboot | ||
- write | ||
- sensitive | ||
- test | ||
- read | ||
- policy | ||
|
||
################################################################### | ||
# Place this in the end of your mikrotik playbook this will remove the | ||
# rollback scheduler task if the playbook runs successfully | ||
##################################################################### | ||
- name: remove rollback scheduler task if run succesfull | ||
hosts: govsat | ||
gather_facts: no | ||
connection: local | ||
tasks: | ||
- mt_system_scheduler: | ||
hostname: "{{ mt_hostname }}" | ||
username: "{{ mt_user }}" | ||
password: "{{ mt_pass }}" | ||
state: absent | ||
name: rollback |