diff --git a/hetzner.yaml b/hetzner.yaml deleted file mode 100644 index 6d61b1d..0000000 --- a/hetzner.yaml +++ /dev/null @@ -1,96 +0,0 @@ ---- -# This playbook backups the customers on hetzner server. -- name: Backup hetzner - hosts: all - gather_facts: true - - tasks: - - name: Backup hetzner - block: - - include_vars: vars/mattermost.yaml - - include_vars: vars/hetzner.yaml - - - name: Create backup directory - file: - path: "{{ backup_dir }}" - state: directory - - - name: Create customer directories - file: - path: "{{ backup_dir }}/{{ item.key }}" - state: directory - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Backup web directories - shell: tar cvfz {{ backup_dir }}/{{ item.key }}/web-{{ ansible_date_time.iso8601_basic_short }}.tar.gz {{ item. value.storage }} - when: item.value.storage is defined - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Fetch web backups - fetch: - src: "{{ backup_dir }}/{{ item.key }}/web-{{ ansible_date_time.iso8601_basic_short }}.tar.gz" - dest: "{{ local_backup }}/{{ item.key }}/" - flat: yes - when: item.value.storage is defined - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Backup databases - shell: mysqldump -u{{ mysql_user }} -p{{ mysql_password }} {{ item.value.database }} > {{ backup_dir }}/{{ item.key }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Compress database backups - shell: gzip {{ backup_dir }}/{{ item.key }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Fetch database backups - fetch: - src: "{{ backup_dir }}/{{ item.key }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql.gz" - dest: "{{ local_backup }}/{{ item.key }}/" - flat: yes - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Clean backup directory - file: - path: "{{ backup_dir }}" - state: absent - - - name: Inform Mattermost about success - uri: - url: "{{ mattermost_url }}" - validate_certs: no - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran successful ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ semaphore_token }}" - status_code: [200, 201] - - rescue: - - name: Inform Mattermost about error - uri: - url: "{{ mattermost_url }}" - validate_certs: no - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran with error ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ error_token }}" - status_code: [200, 201] diff --git a/miniserver.yaml b/miniserver.yaml deleted file mode 100644 index d80616d..0000000 --- a/miniserver.yaml +++ /dev/null @@ -1,68 +0,0 @@ ---- -# This playbook backups database used for volkszaehler. -- name: Backup Mini-Server - hosts: all - gather_facts: true - - tasks: - - name: Backup Mini-Server - block: - - include_vars: vars/mattermost.yaml - - include_vars: vars/mini-server.yaml - - - name: Create backup directory - file: - path: "{{ backup_dir }}" - state: directory - - - name: Backup mysql databases - shell: mysqldump -u{{ mysql_user }} -p{{ mysql_password }} {{ item }} > {{ backup_dir }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - become: yes - become_method: sudo - become_user: root - loop: "{{ databases }}" - - - name: Compress database backup files - shell: gzip {{ backup_dir }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ databases }}" - - - name: Fetch database backups - fetch: - src: "{{ backup_dir }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql.gz" - dest: "{{ local_backup }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql.gz" - flat: yes - loop: "{{ databases }}" - - - name: Clean backup directory - file: - path: "{{ backup_dir }}" - state: absent - - - name: Inform Mattermost about success - uri: - url: "{{ mattermost_url }}" - validate_certs: no - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran successful ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ semaphore_token }}" - status_code: [200, 201] - - rescue: - - name: Inform Mattermost about error - uri: - url: "{{ mattermost_url }}" - validate_certs: no - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran with error ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ error_token }}" - status_code: [200, 201] diff --git a/odroid.yaml b/odroid.yaml deleted file mode 100644 index eb8a82a..0000000 --- a/odroid.yaml +++ /dev/null @@ -1,293 +0,0 @@ ---- -# This playbook backups the odroid docker containers. -- name: Backup odroid - hosts: all - gather_facts: true - - tasks: - - name: Backup odroid - block: - - include_vars: vars/mattermost.yaml - - include_vars: vars/odroid.yaml - - - name: Check if directories exist - stat: - path: "{{ backup_dir }}/{{ item }}" - register: dirs - loop: "{{ systems }}" - - - name: Create not existing directories - file: - path: "{{ backup_dir }}/{{ item.item }}" - state: directory - mode: 0755 - group: chris - owner: chris - when: item.stat.exists == false - with_items: "{{ dirs.results }}" - loop_control: - label: "{{ item.item }}" - - - name: Backup container volumes - shell: docker run --rm -v {{ backup_dir }}/{{ item.value.container }}:/backup --volumes-from {{ item.value.container }} busybox tar cvfz /backup/{{ item.key }}-{{ ansible_date_time.iso8601_basic_short }}.tar.gz {{ item.value.path }} - loop: "{{ lookup('dict', volumes) }}" - loop_control: - label: "{{ item.key }}" - - - name: Change ownership of volume backups - file: - path: "{{ backup_dir }}/{{ item.value.container }}/{{ item.key }}-{{ ansible_date_time.iso8601_basic_short }}.tar.gz" - owner: chris - group: chris - become: yes - become_method: sudo - become_user: root - loop: "{{ lookup('dict', volumes) }}" - loop_control: - label: "{{ item.key }}" - - - name: Backup mysql databases - shell: docker exec {{ item }}-db mysqldump -u{{ item }} -p{{ lookup('vars', item ~ '-password') }} {{ item }} > {{ backup_dir }}/{{ item }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ mysql_databases }}" - - - name: Backup postgres databases - shell: docker exec {{ item }}-db pg_dump -U {{ item }} {{ item }} > {{ backup_dir }}/{{ item }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ postgres_databases }}" - - - name: Compress database backup files - shell: gzip {{ backup_dir }}/{{ item }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ databases }}" - - - name: Check logrotate directories - stat: - path: "{{ backup_dir }}/{{ item[0] }}/{{ item[1] }}" - register: subdirs - with_nested: - - "{{ systems }}" - - ['daily', 'weekly', 'monthly', 'yearly'] - loop_control: - label: "{{ item[0] }} {{ item[1] }}" - - - name: Create not existing logrotate directories - file: - path: "{{ backup_dir }}/{{ item.item[0] }}/{{ item.item[1] }}" - state: directory - mode: 0755 - group: chris - owner: chris - when: item.stat.exists == false - with_items: "{{ subdirs.results }}" - loop_control: - label: "{{ item.item[0] }} {{ item.item[1] }}" - - - name: Search for the created backups - find: - paths: "{{ backup_dir }}/{{ item }}" - file_type: file - patterns: '*.gz' - recurse: false - register: backup_files - loop: "{{ systems }}" - - - name: Store the yearly backups - copy: - remote_src: true - src: "{{ item.path }}" - dest: "{{ item.path | dirname }}/yearly/{{ item.path | basename }}" - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - when: (ansible_date_time.day == "01" and ansible_date_time.month == "01") - loop_control: - label: "{{ item.path }}" - - - name: Store the monthly backups - copy: - remote_src: true - src: "{{ item.path }}" - dest: "{{ item.path | dirname }}/monthly/{{ item.path | basename }}" - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - when: (ansible_date_time.day == "01" and ansible_date_time.month != "01") - loop_control: - label: "{{ item.path }}" - - - name: Store the weekly backups - copy: - remote_src: true - src: "{{ item.path }}" - dest: "{{ item.path | dirname }}/weekly/{{ item.path | basename }}" - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - when: (ansible_date_time.weekday_number == "1") - loop_control: - label: "{{ item.path }}" - - - name: Store the daily backup - copy: - remote_src: true - src: "{{ item.path }}" - dest: "{{ item.path | dirname }}/daily/{{ item.path | basename }}" - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - when: (ansible_date_time.weekday_number != "1" and ansible_date_time.day != "01") - loop_control: - label: "{{ item.path }}" - - - name: Cleanup original backup files - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Find old daily backups - find: - paths: "{{ backup_dir }}/{{ item }}/daily" - file_type: file - age: 8d - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - loop: "{{ systems }}" - - - name: Delete old daily backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Find old weekly backups - find: - paths: "{{ backup_dir }}/{{ item }}/weekly" - file_type: file - age: 5w - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - loop: "{{ systems }}" - - - name: Delete old weekly backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Find old monthly backups - find: - paths: "{{ backup_dir }}/{{ item }}/monthly" - file_type: file - age: 56w - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - loop: "{{ systems }}" - - - name: Delete old monthly backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Search for other servers' backup directories - find: - paths: "/media/backup/{{ item }}" - file_type: directory - recurse: false - register: backup_server_dirs - loop: "{{ servers }}" - - - name: Find servers old daily backups - find: - path: "{{ item.path }}/daily" - file_type: file - age: 8d - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - with_items: "{{ backup_server_dirs.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Delete servers old daily backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Find servers old weekly backups - find: - path: "{{ item.path }}/weekly" - file_type: file - age: 5w - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - with_items: "{{ backup_server_dirs.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Delete servers old weekly backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Find servers old monthly backups - find: - path: "{{ item.path }}/monthly" - file_type: file - age: 56w - age_stamp: ctime - patterns: '*.gz' - recurse: false - register: backup_files - with_items: "{{ backup_server_dirs.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Delete servers old monthly backups - file: - path: "{{ item.path }}" - state: absent - with_items: "{{ backup_files.results | map(attribute='files') | list }}" - loop_control: - label: "{{ item.path }}" - - - name: Inform Mattermost about success - uri: - url: "{{ mattermost_url }}" - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran successful ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ semaphore_token }}" - status_code: [200, 201] - - rescue: - - name: Inform Mattermost about error - uri: - url: "{{ mattermost_url }}" - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran with error ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ error_token }}" - status_code: [200, 201] diff --git a/strato-production.yaml b/strato-production.yaml deleted file mode 100644 index 1acdb0f..0000000 --- a/strato-production.yaml +++ /dev/null @@ -1,107 +0,0 @@ ---- -# This playbook backups the odroid docker containers. -- name: Backup Strato Production - hosts: all - gather_facts: true - - tasks: - - name: Backup strato-production - block: - - include_vars: vars/mattermost.yaml - - include_vars: vars/strato-production.yaml - - - name: Create backup directory - file: - path: "{{ backup_dir }}" - state: directory - - - name: Create customer directories - file: - path: "{{ backup_dir }}/{{ item.key }}" - state: directory - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Backup web directories - shell: tar cvfz {{ backup_dir }}/{{ item.key }}/web-{{ ansible_date_time.iso8601_basic_short }}.tar.gz {{ item.value.storage }} - when: item.value.storage is defined - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Fetch web backups - fetch: - src: "{{ backup_dir }}/{{ item.key }}/web-{{ ansible_date_time.iso8601_basic_short }}.tar.gz" - dest: "{{ local_backup }}/{{ item.key }}/" - flat: yes - when: item.value.storage is defined - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Backup mysql databases - shell: docker exec {{ item }}-db mysqldump -u{{ item }} -p{{ lookup('vars', item ~ '-password') }} {{ item }} > {{ backup_dir }}/{{ item }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ mysql_databases }}" - - - name: Compress database backup files - shell: gzip {{ backup_dir }}/{{ item }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql - loop: "{{ databases }}" - - - name: Fetch database backups - fetch: - src: "{{ backup_dir }}/{{ item.key }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql.gz" - dest: "{{ local_backup }}/{{ item.key }}/" - flat: yes - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Send Email - community.general.mail: - host: mail.steinle-computer.de - port: 465 - from: kontakt@steinle-computer.de (Christian Steinle) - username: kontakt@steinle-computer.de - password: "{{ mail_password }}" - to: "{{ item.value.email }}" - subject: Datenbank Backup - body: Backup der Anwendung wurde erstellt. - attach: - - "{{ backup_dir }}/{{ item.key }}/db-{{ ansible_date_time.iso8601_basic_short }}.sql.gz" - when: item.value.email is defined - loop: "{{ lookup('dict', customers) }}" - loop_control: - label: "{{ item.key }}" - - - name: Clean backup directory - file: - path: "{{ backup_dir }}" - state: absent - - - name: Inform Mattermost about success - uri: - url: "{{ mattermost_url }}" - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran successful ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ semaphore_token }}" - status_code: [200, 201] - - rescue: - - name: Inform Mattermost about error - uri: - url: "{{ mattermost_url }}" - method: POST - body_format: json - body: - channel_id: "{{ channel_id }}" - message: "{{ ansible_date_time.date }} {{ ansible_date_time.time }}: Playbook ran with error ({{ ansible_play_name }})" - headers: - Content-Type: application/json - Authorization: "Bearer {{ error_token }}" - status_code: [200, 201] diff --git a/vars/hetzner.yaml b/vars/hetzner.yaml deleted file mode 100644 index b2a7bda..0000000 --- a/vars/hetzner.yaml +++ /dev/null @@ -1,31 +0,0 @@ -ansible_python_interpreter: /usr/bin/python2 -mysql_user: root -mysql_password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 36616238373963663637653131316238303437333335313831646265636232383736306165373535 - 3765306364393366316536366136336532303436346139650a316336636161613762353266363866 - 30613765356432336264633161396536613739653332646561616661663465393161666539626435 - 3166633663326362610a333064663838666531656265633736333761623439656234303066323136 - 65396662353166396532633532313061336664653835656439306466336464393164 -backup_dir: /var/chris -databases: ['c1_scheidle', 'c1_startup', 'c2_buehler', 'c4_svj', 'c5_maier', 'dbispconfig', 'roundcube'] - -customers: - scheidle: - database: c1_scheidle - startup: - database: c1_startup - buehler: - database: c2_buehler - svj: - database: c4_svj - storage: /var/www/clients/client4/web4/web/media/svjf - maier: - database: c5_maier - ispconfig: - database: dbispconfig - roundcube: - database: roundcube - -local_backup: /home/semaphore/backup - diff --git a/vars/mini-server.yaml b/vars/mini-server.yaml deleted file mode 100644 index ecd8c24..0000000 --- a/vars/mini-server.yaml +++ /dev/null @@ -1,12 +0,0 @@ -mysql_user: root -mysql_password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 36326232633139633763643864663666616165663135646530666435313362316463663630346462 - 3261653735613434633134623639313135373466633038370a613235313062343737636661363561 - 32306530666265336535376534633937303931653566313761663564653263326365353766376232 - 3065376433323530310a666466313638623163663435383533313537633238373737353131366139 - 6566 -backup_dir: /home/chris/backup -databases: ['volkszaehler'] - -local_backup: /home/semaphore/backup/miniserver/ \ No newline at end of file diff --git a/vars/odroid.yaml b/vars/odroid.yaml deleted file mode 100644 index fa5b858..0000000 --- a/vars/odroid.yaml +++ /dev/null @@ -1,78 +0,0 @@ -backup_dir: /media/backup/docker -systems: ['duplicati', 'gitea', 'mattermost', 'nextcloud', 'portainer', 'semaphore', 'vaultwarden'] -databases: ['gitea', 'mattermost', 'nextcloud', 'semaphore'] -mysql_databases: ['semaphore'] -postgres_databases: ['gitea', 'mattermost', 'nextcloud'] -bookstack-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 33396131646266346635316538663337376432366135636166636332653431663834613139663766 - 3633626536616462316434373632656330643563323835320a303163393034333439313236393531 - 66343539653835643733303333343466326532663837343636326339366333316335313538316331 - 3732306231396535630a633162653539643132643063373730316462646662636364353734363932 - 38303464363437666534306233393233323363383033323134363930396364303462 -drone-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 33326532336464663338346165346636393633666434333135353230643235616339373436366365 - 3937303132366632623739653639323830393564643234370a376262373863636638366464613665 - 64336331613561326334613731303237643562343631616161636165383735653636386166316166 - 6236386333623731660a343363323566383634383430326261333031346533663737326530666363 - 37353332383862646262646361333238363261313632336438393230336662616462 -gitea-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 35386139336366356138376663316634626663656234333932363865613339383338653864396237 - 6266356438393366623238656266373732613739333334300a636630626630323731326565303264 - 62316336383333333063626665323063613530616132363537343139633765626231393932656233 - 3931376265346362610a383438643662663834353663366231643261323964323434363463346436 - 64626135373938636265616532373531626565393438633537646361646663326365 -kimai-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 65333334616333326464643264343430303937613362323432646136303932663164316134623063 - 6636646534396635303635313137386634636263376532630a306131376437383365326136373437 - 30326338373236363662623163646438306637626166353438613434353666616338653730343534 - 6537326238336161620a336564386633623335333562333966636462626461383131613137326464 - 63306230316662353865386333383536633938343937663162643664333765303761 -mattermost-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 30633262316262313463383737353134306463613838383937366364343163376235333266326561 - 3036656433613465653534376530333137346461323732330a653362643338356265646536303635 - 39613063623037363938356461383638353639616661326237336661613631633563313135363838 - 6363373661653034350a386365643566373964343332623231396331666634303235313366356663 - 39653261373363323633336361303866386365373931653538353938643265613665 -nextcloud-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 34636539383237653564393232316363303062626566303963313634636637623034366262633966 - 3561333039623330353435333130653664336431366165380a626634353832623366633135353962 - 30393265643365383461373236363962636564333639633266336133313431303937663736356632 - 3666633031366538380a656434643766313762366665666633633932623434303532336361646635 - 31623738623261373366393939613765363033313761666361313364326435303837 -power-consumption-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 37646537636633613933643837373262623566663638306132353562613766643838313866623232 - 6135653432313461313432653131626134386566633864610a383163383230656433356561303365 - 34363232353233616139633263636435363362323739396565373839333134323434373532346335 - 3837393665623635330a363266396537316466633463393739386438633530303164333563663932 - 3861 -semaphore-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 65393034313732656364303764323665616165636365343232323766363535323639353936366265 - 6334346130303739626635383138393832653334626536390a313964326337613635383564343465 - 35363336396339323565306439613964343632373939333238656134303235636639656465353362 - 3261356535383164610a643666363635666231343634353539326137343461646365303237653733 - 63393438616332623234623137343333383533393434343437623065386461373564 -volumes: - duplicati-conf: - container: duplicati - path: /data - mattermost: - container: mattermost - path: /mattermost/data - nextcloud-config: - container: nextcloud - path: /var/www/html/config - portainer: - container: portainer - path: /data - vault: - container: vaultwarden - path: /data -servers: ['strato-production'] diff --git a/vars/strato-production.yaml b/vars/strato-production.yaml deleted file mode 100644 index 60410c4..0000000 --- a/vars/strato-production.yaml +++ /dev/null @@ -1,64 +0,0 @@ -backup_dir: /media/backup/strato-production -systems: ['buehler', 'scheidle', 'roundcube', 'startup', 'svj'] -databases: ['buehler', 'scheidle', 'roundcube', 'startup', 'svj'] -mysql_databases: ['buehler', 'scheidle', 'roundcube', 'startup', 'svj'] -local_backup: /home/semaphore/backup -mail_password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 31373836653662626361323733613833343239373538613061666661353764646131383464396131 - 3538303939356130373364313331616430643436356533310a376338666538646464616635376263 - 64363965386239613839393162313965356165613239643863306138623537393235343639376132 - 3135303633373730370a666333633236343331643666363239376561333365303632326266343966 - 3036 -buehler-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 37306230376433313631326230313739396238666239323362366164363831643664306535346464 - 3161643933633336366364636534333662383731376633300a303666373565356564323361346636 - 63366162336662636266613235643335323835613838663839383433656362366566336637353938 - 3961633364303334330a363136373931396536623836303833666431393932316636396432346232 - 66643031663162373838333434616462333465316134626238306334633439643734336561396531 - 6531316263333335626662656139303235313137666162326138 -scheidle-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 30346162333562373233306562626135306530343334663938653661653063363839666266313833 - 6538373639643435663032323939613464333931623933610a303334316633646164356161313865 - 65353662346263353537343136663738316132323537663761636535613563336439653935333365 - 3333373666353232640a323938343030366233326232393164396264343831313834326436336630 - 62623137363631346263343633663236646537643065353932396334613935633736 -roundcube-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 63626165346530336461393438333731316132366666643334616537323638373362373835656436 - 6136636561306438323762386663393863303533373464630a346639366539393936646334643732 - 38383465636536646533363035366335326261323235353664643136393531306464333633636538 - 3138656666643039610a663663303065313538373865343235313963353865313861323231663631 - 66656435636263626633356636306636303434323265346333366630383531313637 -startup-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 32396162326261663939653239386635316536663034653562393833356461363438323430373361 - 3465373962666332346331636634376264346239353930320a336666623734383534306564383430 - 33316432303735376334313966323033393338383066393239663636323962373835393633366333 - 3965623064313539330a613665343566663865663436363263366637353034623337343834663164 - 34616635346533633666316534633737326138636533363366643238373736336562393664646337 - 6661313163303331336163303464373666633266363866336133 -svj-password: !vault | - $ANSIBLE_VAULT;1.1;AES256 - 64386230373266663734633264613839623135323335313934373264393764353338323430313131 - 3131616663616461306366373138626439363064616237380a613465663335373063663830656638 - 31316433653265313733393862653634666261643865363364323165326139323230633838366339 - 3731613934383064310a666338373530633136336362646139373633323139333738363061393562 - 38653231333437653066346465633635336663643137363431326239333135616230 -customers: - buehler: - database: buehler - storage: /var/lib/docker/volumes/buehler-storage/_data - scheidle: - database: scheidle - email: Klaus Scheidle - roundcube: - database: roundcube - startup: - database: startup - svj: - database: svj - storage: /var/lib/docker/volumes/svj-media/_data -