typo2
This commit is contained in:
@@ -1,62 +1,59 @@
|
|||||||
- hosts: mikrotiks
|
- name: Backup MikroTik config (text export only)
|
||||||
|
hosts: mikrotiks
|
||||||
gather_facts: no
|
gather_facts: no
|
||||||
|
|
||||||
|
vars:
|
||||||
|
backup_dir: /opt/mikrotik_backups/
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Set SSH port (default to 22)
|
|
||||||
set_fact:
|
|
||||||
ansible_port: "{{ ansible_port | default(22) }}"
|
|
||||||
|
|
||||||
- name: Ensure output directory exists
|
# ----------------------------
|
||||||
|
# Ensure local backup directory
|
||||||
|
# ----------------------------
|
||||||
|
- name: Ensure local backup directory exists
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /opt/mikrotik_backups
|
path: "{{ backup_dir }}"
|
||||||
state: directory
|
state: directory
|
||||||
mode: '0755'
|
mode: "0755"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# Get router identity
|
||||||
|
# ----------------------------
|
||||||
- name: Get router identity
|
- name: Get router identity
|
||||||
shell: timeout 15 ssh -o StrictHostKeyChecking=no {{ ansible_user }}@{{ ansible_host }} -p {{ ansible_port }} "/system identity print"
|
community.routeros.command:
|
||||||
register: system_identity
|
commands: /system identity print
|
||||||
delegate_to: localhost
|
register: identity_raw
|
||||||
failed_when: system_identity.rc != 0 and system_identity.rc != 124 # 124 = timeout
|
|
||||||
|
|
||||||
- name: Set router name
|
- name: Parse router name
|
||||||
set_fact:
|
set_fact:
|
||||||
router_name: "{{ system_identity.stdout.split(': ')[1] | trim }}"
|
router_name: "{{ identity_raw.stdout[0].split(': ')[1] | trim }}"
|
||||||
when: system_identity.rc == 0
|
|
||||||
|
|
||||||
- name: Generate current date
|
# ----------------------------
|
||||||
ansible.builtin.shell: date +%Y-%m-%d
|
# Timestamp
|
||||||
register: date_output
|
# ----------------------------
|
||||||
|
- name: Get timestamp
|
||||||
|
ansible.builtin.command: date +%Y-%m-%d_%H-%M-%S
|
||||||
|
register: date_out
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Set current date
|
- name: Set timestamp fact
|
||||||
set_fact:
|
set_fact:
|
||||||
current_date: "{{ date_output.stdout }}"
|
ts: "{{ date_out.stdout }}"
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# Export config (stable for diff)
|
||||||
|
# ----------------------------
|
||||||
- name: Export router config
|
- name: Export router config
|
||||||
shell: timeout 15 ssh -o StrictHostKeyChecking=no {{ ansible_user }}@{{ ansible_host }} -p {{ ansible_port }} "/export"
|
community.routeros.command:
|
||||||
register: export_output
|
commands: /export terse show-sensitive
|
||||||
delegate_to: localhost
|
register: export_cfg
|
||||||
when: system_identity.rc == 0
|
|
||||||
failed_when: export_output.rc != 0 and export_output.rc != 124
|
|
||||||
|
|
||||||
- name: Save export to local file
|
# ----------------------------
|
||||||
|
# Save export locally
|
||||||
|
# ----------------------------
|
||||||
|
- name: Save export locally
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
content: "{{ export_output.stdout }}"
|
content: "{{ export_cfg.stdout[0] }}"
|
||||||
dest: "/opt/mikrotik_backups/{{ router_name }}-{{ current_date }}.config"
|
dest: "{{ backup_dir }}/{{ router_name }}-{{ ts }}.rsc"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
when: export_output.rc == 0
|
|
||||||
|
|
||||||
- name: Create binary backup on router
|
|
||||||
shell: timeout 15 ssh -o StrictHostKeyChecking=no {{ ansible_user }}@{{ ansible_host }} -p {{ ansible_port }} "/system backup save name={{ router_name }}-{{ current_date }}-backup"
|
|
||||||
delegate_to: localhost
|
|
||||||
when: system_identity.rc == 0
|
|
||||||
|
|
||||||
- name: Download binary backup
|
|
||||||
shell: timeout 15 scp -o StrictHostKeyChecking=no -P {{ ansible_port }} {{ ansible_user }}@{{ ansible_host }}:{{ router_name }}-{{ current_date }}-backup.backup /opt/mikrotik_backups/
|
|
||||||
delegate_to: localhost
|
|
||||||
when: system_identity.rc == 0
|
|
||||||
|
|
||||||
- name: Remove backup file from router
|
|
||||||
shell: timeout 15 ssh -o StrictHostKeyChecking=no {{ ansible_user }}@{{ ansible_host }} -p {{ ansible_port }} "/file remove {{ router_name }}-{{ current_date }}-backup.backup"
|
|
||||||
delegate_to: localhost
|
|
||||||
when: system_identity.rc == 0
|
|
||||||
|
|||||||
Reference in New Issue
Block a user