mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2024-11-19 19:07:42 +01:00
bypasses tasks not relevent to docker install method
This commit is contained in:
parent
d9dfd5c6b5
commit
d8c51011e7
@ -19,6 +19,7 @@
|
||||
- "{{ ansible_lsb.id }}.yml"
|
||||
|
||||
- name: Install general dependencies (openssh)
|
||||
when: borg_install_method != "docker"
|
||||
ansible.builtin.package:
|
||||
name: "{{ borg_dep_packages }}"
|
||||
state: present
|
||||
|
@ -1,7 +1,11 @@
|
||||
---
|
||||
# So in different positions in that role we need the user home
|
||||
# Since we cannot be sure that this FSH is compatible we will determine it.
|
||||
- name: Get home dir
|
||||
- name: User management
|
||||
when:
|
||||
- borg_install_method != "docker"
|
||||
block:
|
||||
- name: Get home dir
|
||||
when:
|
||||
- borg_user == "root"
|
||||
block:
|
||||
@ -17,7 +21,7 @@
|
||||
ansible.builtin.set_fact:
|
||||
backup_user_info: "{{ user_info }}"
|
||||
|
||||
- name: Create user if borg_user != "root"
|
||||
- name: Create user if borg_user != "root"
|
||||
when:
|
||||
- borg_user != "root"
|
||||
ansible.builtin.include_tasks:
|
||||
|
@ -1,5 +1,9 @@
|
||||
---
|
||||
- name: Create SSH key (if neeeded) for {{ borg_user }}
|
||||
- name: Create ssh key
|
||||
when:
|
||||
- borg_install_method != "docker"
|
||||
block:
|
||||
- name: Create SSH key (if needed) for {{ borg_user }}
|
||||
block:
|
||||
- name: Ensure directory exist
|
||||
ansible.builtin.file:
|
||||
@ -10,6 +14,7 @@
|
||||
group: "{{ borg_group }}"
|
||||
|
||||
- name: Generate an OpenSSH keypair
|
||||
when: not borg_ssh_private_key
|
||||
community.crypto.openssh_keypair:
|
||||
path: "{{ borg_ssh_key_file_path }}"
|
||||
mode: "0600"
|
||||
@ -17,6 +22,23 @@
|
||||
owner: "{{ borg_user }}"
|
||||
group: "{{ borg_group }}"
|
||||
|
||||
- name: Generate public key from private key content # Also ensure priv key content is sound
|
||||
when: borg_ssh_private_key
|
||||
delegate_to: localhost
|
||||
community.crypto.openssl_publickey:
|
||||
path: "{{ borg_ssh_key_file_path }}.pub"
|
||||
privatekey_content: "{{ borg_ssh_private_key }}"
|
||||
register: public_key
|
||||
|
||||
- name: Copy provided OpenSSH private key
|
||||
when: public_key.succeeded
|
||||
ansible.builtin.copy:
|
||||
content: "{{ borg_ssh_private_key }}"
|
||||
dest: "{{ borg_ssh_key_file_path }}"
|
||||
mode: "0600"
|
||||
owner: "{{ borg_user }}"
|
||||
group: "{{ borg_group }}"
|
||||
|
||||
- name: Read SSH key
|
||||
ansible.builtin.slurp:
|
||||
src: "{{ borg_ssh_key_file_path }}.pub"
|
||||
|
@ -1,5 +1,7 @@
|
||||
---
|
||||
- name: Add Borgmatic config file
|
||||
when:
|
||||
- borg_install_method != "docker"
|
||||
block:
|
||||
- name: Ensure /etc/borgmatic exists
|
||||
ansible.builtin.file:
|
||||
|
@ -2,6 +2,7 @@
|
||||
- name: Install timer to run Borgmatic
|
||||
when:
|
||||
- borgmatic_timer is defined and borgmatic_timer | length > 0
|
||||
- borg_install_method != "docker"
|
||||
block:
|
||||
- name: Start timer install script
|
||||
ansible.builtin.include_tasks:
|
||||
|
Loading…
Reference in New Issue
Block a user