From cf7db7e0565c2a5542b070aa4d7fd84188fb5223 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Thu, 6 Apr 2023 20:36:58 +0300 Subject: [PATCH] no need for backups in a git --- tasks/configure.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index 0c28c73..82baa8d 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -48,7 +48,6 @@ option: PublicKey value: "{{ public_key | replace('\n', '')}}" create: true - backup: true - name: Set allowed IPs to peer conf file ini_file: @@ -57,7 +56,6 @@ option: AllowedIPs value: "{{ vpnes_ip }}/32" create: true - backup: true - name: Set end point to peer conf file ini_file: @@ -66,7 +64,6 @@ option: Endpoint value: "{{ ansible_host }}:{{ vpnes_port }}" create: true - backup: true - name: Create commit with changes to repo of peers shell: "git add . && git commit -am 'Update {{ inventory_hostname }}' && git push -f"