Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • ansible/roles/borgbackup
1 result
Select Git revision
  • main
1 result
Show changes
Commits on Source (1)
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
src: app.yaml src: app.yaml
dest: '{{ application_root }}/borgconfig/config.yaml' dest: '{{ application_root }}/borgconfig/config.yaml'
mode: 0600 mode: 0600
when: ansible_distribution_major_version != '18'
- name: Crontabs - name: Crontabs
copy: copy:
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: ansible_distribution_major_version != '18'
- name: Add Borgmatic Check - name: Add Borgmatic Check
template: template:
...@@ -25,7 +26,7 @@ ...@@ -25,7 +26,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: not borgbackup.disable_local|default(false) when: not borgbackup.disable_local|default(false) and ansible_distribution_major_version != '18'
- name: Add Borgmatic Configuration for Drupal - name: Add Borgmatic Configuration for Drupal
include_tasks: config_drupal.yml include_tasks: config_drupal.yml
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: ansible_distribution_major_version != '18'
- name: Configure Drupal Check - name: Configure Drupal Check
template: template:
...@@ -50,7 +51,7 @@ ...@@ -50,7 +51,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: not application_disable_local|default(false) when: not application_disable_local|default(false) and ansible_distribution_major_version != '18'
- name: Add repo server host key to known hosts - name: Add repo server host key to known hosts
known_hosts: known_hosts:
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: ansible_distribution_major_version != '18'
- name: Configure Nextcloud Check - name: Configure Nextcloud Check
template: template:
...@@ -41,7 +42,7 @@ ...@@ -41,7 +42,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: not application_disable_local|default(false) when: not application_disable_local|default(false) and ansible_distribution_major_version != '18'
- name: Add repo server host key to known hosts - name: Add repo server host key to known hosts
known_hosts: known_hosts:
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: ansible_distribution_major_version != '18'
- name: Configure Other Check - name: Configure Other Check
template: template:
...@@ -34,7 +35,7 @@ ...@@ -34,7 +35,7 @@
mode: 0600 mode: 0600
notify: notify:
- Init Borgs - Init Borgs
when: not application_disable_local|default(false) when: not application_disable_local|default(false) and ansible_distribution_major_version != '18'
- name: Add repo server host key to known hosts - name: Add repo server host key to known hosts
known_hosts: known_hosts:
......