Dried up the tags for evobackup-client
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

blocks allow us to assign multiple tags to multiple tasks without
repeating ourselves. This also simplifies other logic like conditional
includes.
This commit is contained in:
Patrick Marchand 2020-06-23 12:07:51 -04:00
parent 8caca4c711
commit de4ba88790
7 changed files with 115 additions and 130 deletions

View file

@ -1,6 +1,7 @@
--- ---
- name: 'create jail' - block:
- name: 'create jail'
command: "bkctld init {{ evolinux_hostname }}" command: "bkctld init {{ evolinux_hostname }}"
args: args:
creates: "/backup/jails/{{ evolinux_hostname }}/" creates: "/backup/jails/{{ evolinux_hostname }}/"
@ -8,34 +9,26 @@
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
notify: notify:
- 'created new jail' - 'created new jail'
tags:
- evobackup_client
- evobackup_client_jail
# temp fix for bkctld 2.x because the ip and key command return 1 # temp fix for bkctld 2.x because the ip and key command return 1
# if the jail is not started, see https://gitea.evolix.org/evolix/evobackup/issues/31 # if the jail is not started, see https://gitea.evolix.org/evolix/evobackup/issues/31
- name: 'start jail' - name: 'start jail'
command: "bkctld restart {{ evolinux_hostname }}" command: "bkctld restart {{ evolinux_hostname }}"
become: true become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
tags:
- evobackup_client
- evobackup_client_jail
- name: 'add ip to jail' - name: 'add ip to jail'
command: "bkctld ip {{ evolinux_hostname }} {{ ansible_host }}" command: "bkctld ip {{ evolinux_hostname }} {{ ansible_host }}"
become: true become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
notify: 'jail updated' notify: 'jail updated'
tags:
- evobackup_client
- evobackup_client_jail
- name: 'add key to jail' - name: 'add key to jail'
command: "bkctld key {{ evolinux_hostname }} /root/{{ evolinux_hostname }}.pub" command: "bkctld key {{ evolinux_hostname }} /root/{{ evolinux_hostname }}.pub"
become: true become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
notify: 'jail updated' notify: 'jail updated'
tags: tags:
- evobackup_client - evobackup_client
- evobackup_client_jail - evobackup_client_jail

View file

@ -1,11 +1,17 @@
--- ---
- name: 'get jail port' - block:
- name: 'get jail port'
command: "bkctld port {{ evolinux_hostname }}" command: "bkctld port {{ evolinux_hostname }}"
become: true become: true
register: bkctld_port register: bkctld_port
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
- name: 'register jail port' - name: 'register jail port'
set_fact: set_fact:
evobackup_ssh_port={{ bkctld_port.stdout }} evobackup_ssh_port={{ bkctld_port.stdout }}
when: evobackup_ssh_port = ''
tags:
- evobackup_client
- evobackup_client_ssh_port

View file

@ -1,26 +1,11 @@
--- ---
- include: "ssh_key.yml" - block:
tags: - include: "ssh_key.yml"
- evobackup_client - include: "jail.yml"
- evobackup_client_backup_ssh_key - include: "upload_scripts.yml"
- include: "open_ssh_ports.yml"
- include: "verify_ssh.yml"
- include: "jail.yml"
tags: tags:
- evobackup_client - evobackup_client
- evobackup_client_jail
- include: "upload_scripts.yml"
tags:
- evobackup_client
- evobackup_client_backup_scripts
- include: "open_ssh_ports.yml"
tags:
- evobackup_client
- evobackup_client_backup_firewall
- include: "verify_ssh.yml"
tags:
- evobackup_client
- evobackup_client_backup_hosts

View file

@ -1,17 +1,15 @@
--- ---
- name: Is there a Minifirewall ? - block:
- name: Is there a Minifirewall ?
stat: stat:
path: /etc/default/minifirewall path: /etc/default/minifirewall
register: evobackup_client__minifirewall register: evobackup_client__minifirewall
tags:
- evobackup_client
- evobackup_client_backup_firewall
- include: "jail_port.yml" - include: "jail_port.yml"
when: evobackup_ssh_port = '' when: evobackup_client__minifirewall.stat.exists
- name: Add backup SSH port in /etc/default/minifirewall - name: Add backup SSH port in /etc/default/minifirewall
blockinfile: blockinfile:
dest: /etc/default/minifirewall dest: /etc/default/minifirewall
marker: "# {mark} {{ item.name }}" marker: "# {mark} {{ item.name }}"
@ -20,6 +18,7 @@
with_items: "{{ evobackup_client__hosts }}" with_items: "{{ evobackup_client__hosts }}"
notify: restart minifirewall notify: restart minifirewall
when: evobackup_client__minifirewall.stat.exists when: evobackup_client__minifirewall.stat.exists
tags: tags:
- evobackup_client - evobackup_client
- evobackup_client_backup_firewall - evobackup_client_firewall

View file

@ -1,31 +1,28 @@
--- ---
- name: Create SSH key - block:
- name: Create SSH key
user: user:
name: root name: root
generate_ssh_key: true generate_ssh_key: true
ssh_key_file: "{{ evobackup_client__root_key_path }}" ssh_key_file: "{{ evobackup_client__root_key_path }}"
ssh_key_type: "{{ evobackup_client__root_key_type }}" ssh_key_type: "{{ evobackup_client__root_key_type }}"
register: evobackup_client__root_key register: evobackup_client__root_key
tags:
- evobackup_client
- evobackup_client_backup_ssh_key
- name: Print SSH key - name: Print SSH key
debug: debug:
var: evobackup_client__root_key.ssh_public_key var: evobackup_client__root_key.ssh_public_key
when: evobackup_client__root_key.ssh_public_key is defined when: evobackup_client__root_key.ssh_public_key is defined
tags:
- evobackup_client
- evobackup_client_backup_ssh_key
- name: 'copy ssh public key to backup server' - name: 'copy ssh public key to backup server'
copy: copy:
content: "{{ evobackup_client__root_key.ssh_public_key }}" content: "{{ evobackup_client__root_key.ssh_public_key }}"
dest: "/root/{{ evolinux_hostname }}.pub" dest: "/root/{{ evolinux_hostname }}.pub"
become: true become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}" delegate_to: "{{ evobackup_client__hosts[0].ip }}"
tags: tags:
- evobackup_client
- evobackup_client_backup_ssh_key
- evobackup_client_jail - evobackup_client_jail
tags:
- evobackup_client
- evobackup_client_ssh_key

View file

@ -1,9 +1,9 @@
--- ---
- include: "jail_port.yml" - block:
when: evobackup_ssh_port = '' - include: "jail_port.yml"
- name: Upload evobackup script - name: Upload evobackup script
template: template:
src: "{{ item }}" src: "{{ item }}"
dest: "{{ evobackup_client__cron_path }}" dest: "{{ evobackup_client__cron_path }}"
@ -14,3 +14,7 @@
- "templates/evobackup-client/{{ evobackup_client__cron_template_name }}.{{ host_group }}.sh.j2" - "templates/evobackup-client/{{ evobackup_client__cron_template_name }}.{{ host_group }}.sh.j2"
- "templates/evobackup-client/{{ evobackup_client__cron_template_name }}.sh.j2" - "templates/evobackup-client/{{ evobackup_client__cron_template_name }}.sh.j2"
- "zzz_evobackup.default.sh.j2" - "zzz_evobackup.default.sh.j2"
tags:
- evobackup_client
- evobackup_client_script

View file

@ -1,14 +1,15 @@
--- ---
- include: "jail_port.yml" - block:
when: evobackup_ssh_port = '' - include: "jail_port.yml"
- name: Verify evolix backup servers - name: Verify evolix backup servers
known_hosts: known_hosts:
path: /root/.ssh/known_hosts path: /root/.ssh/known_hosts
name: "[{{ item.name }}]:{{ item.port }}" name: "[{{ item.name }}]:{{ item.port }}"
key: "[{{ item.name }}]:{{ item.port }} {{ item.fingerprint }}" key: "[{{ item.name }}]:{{ item.port }} {{ item.fingerprint }}"
with_list: "{{ evobackup_client__hosts }}" with_list: "{{ evobackup_client__hosts }}"
tags: tags:
- evobackup_client - evobackup_client
- evobackup_client_backup_hosts - evobackup_client_fingerprints