aboutsummaryrefslogtreecommitdiffstats
path: root/playbooks/util/backup.yml
blob: 0c99eea0204e8932e2442c205d9d5d158e84f2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
#################
# Set backup name
#################
- hosts: localhost
  tags: always
  tasks:
    - name: get current timestamp
      setup:
        filter: ansible_date_time

    - name: create backup directory
      file:
        path: '{{ backup_path }}'
        state: directory

- hosts: all:localhost:!unmanaged
  tags: always
  tasks:
    - name: set backup name
      set_fact:
        backup_name: '{{ backup_name | default(hostvars.localhost.ansible_date_time.iso8601_basic_short) }}'


################
# IMAP Mailboxes
################
- name: backup dovecot mailboxes
  hosts: imap_servers
  vars_files: ../../roles/dovecot/vars/main.yml
  vars:
    dovecot_backup_dir: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-mailboxes
    dovecot_backup_tarball: '{{ dovecot_backup_dir }}.tar.gz'
    dovecot_backup_sieve_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-sieve.tar.gz
  tags: dovecot,imap
  tasks:
    - name: create backup directory
      file:
        path: '{{ dovecot_backup_dir }}'
        owner: '{{ dovecot_vmail_user }}'
        group: '{{ dovecot_vmail_user }}'
        mode: 0770
        state: directory

    - name: collect dovecot users
      command: doveadm user *
      register: dovecot_users
      changed_when: no

    - name: export mailboxes
      command: >-
        doveadm -o plugin/quota= backup -n inbox -f -u {{ item | quote }}
        mdbox:{{ dovecot_backup_dir | quote }}/{{ item | quote }}/mdbox:LAYOUT=fs
      loop: '{{ dovecot_users.stdout_lines }}'

    - name: compress backup directory
      archive:
        path: '{{ dovecot_backup_dir }}'
        dest: '{{ dovecot_backup_tarball }}'
        mode: 0400
        remove: yes

    - name: fetch mailbox tarball
      fetch:
        src: '{{ dovecot_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete mailbox tarball from remote host
      file:
        path: '{{ dovecot_backup_tarball }}'
        state: absent

    - name: compress sieve scripts
      archive:
        path:
          - '{{ dovecot_vmail_dir }}/*/sieve'
          - '{{ dovecot_vmail_dir }}/*/.dovecot.sieve'
        dest: '{{ dovecot_backup_sieve_tarball }}'
        mode: 0400

    - name: fetch sieve tarball
      fetch:
        src: '{{ dovecot_backup_sieve_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete sieve tarball from remote host
      file:
        path: '{{ dovecot_backup_sieve_tarball }}'
        state: absent


##################
# Rspamd Databases
##################
- name: backup rspamd databases
  hosts: rspamd_servers
  vars_files:
    - ../../roles/redis/vars/main.yml
    - ../../roles/rspamd/vars/main.yml
  vars:
    rspamd_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-rspamd.tar.gz
  tags: rspamd
  tasks:
    - name: dump redis databases to disk
      command:
        cmd: redis-cli -p {{ item }}
        stdin: save
      loop:
        - '{{ rspamd_redis_port }}'
        - '{{ rspamd_redis_bayes_port }}'

    - name: compress redis directory
      archive:
        path: '{{ redis_home }}'
        dest: '{{ rspamd_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ rspamd_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ rspamd_backup_tarball }}'
        state: absent


###################
# ZNC Configuration
###################
- name: backup znc configuration
  hosts: znc_servers
  vars_files: ../../roles/znc/vars/main.yml
  vars:
    znc_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-znc.tar.gz
  tags: znc
  tasks:
    - name: compress znc directory
      archive:
        path: '{{ znc_home }}'
        dest: '{{ znc_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ znc_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ znc_backup_tarball }}'
        state: absent


#########################
# Syncthing Configuration
#########################
- name: backup syncthing configuration
  hosts: syncthing_servers
  vars_files: ../../roles/syncthing/vars/main.yml
  vars:
    syncthing_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-syncthing.tar.gz
  tags: syncthing
  tasks:
    - name: compress syncthing directory
      archive:
        path: '{{ syncthing_home }}'
        dest: '{{ syncthing_backup_tarball }}'
        exclusion_patterns:
          - '*/index-*.db*'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ syncthing_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ syncthing_backup_tarball }}'
        state: absent


##################
# Git Repositories
##################
- name: backup git respositories
  hosts: git_servers
  vars_files: ../../roles/gitolite/vars/main.yml
  vars:
    git_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-git.tar.gz
  tags: git
  tasks:
    - name: compress git directory
      archive:
        path: '{{ gitolite_home }}'
        dest: '{{ git_backup_tarball }}'
        exclusion_patterns:
          - git/.ansible*
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ git_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ git_backup_tarball }}'
        state: absent


######################
# PostgreSQL Databases
######################
- name: backup postgresql databases
  hosts: postgresql_servers
  vars_files: ../../roles/postgresql_server/vars/main.yml
  vars:
    postgresql_backup_file: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-pg_dumpall.sql
    postgresql_backup_gzip: '{{ postgresql_backup_file }}.gz'
  tags: postgres,postgresql
  tasks:
    - name: dump databases
      command: pg_dumpall -f {{ postgresql_backup_file | quote }}
      become: yes
      become_user: '{{ postgresql_user }}'

    - name: compress sql file
      archive:
        path: '{{ postgresql_backup_file }}'
        dest: '{{ postgresql_backup_gzip }}'
        mode: 0400
        remove: yes

    - name: fetch backup gzip
      fetch:
        src: '{{ postgresql_backup_gzip }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup gzip from remote
      file:
        path: '{{ postgresql_backup_gzip }}'
        state: absent



########################
# Jellyfin Configuration
########################
- name: backup jellyfin configuration
  hosts: jellyfin_servers
  vars_files: ../../roles/jellyfin/vars/main.yml
  vars:
    jellyfin_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-jellyfin.tar.gz
  tags: jellyfin
  tasks:
    - name: compress jellyfin directories
      archive:
        path:
          - '{{ jellyfin_home }}/data'
          - '{{ jellyfin_home }}/metadata'
          - '{{ jellyfin_home }}/plugins'
          - '{{ jellyfin_home }}/root'
          - '{{ jellyfin_conf_dir }}'
        dest: '{{ jellyfin_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ jellyfin_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ jellyfin_backup_tarball }}'
        state: absent


##################
# Mediawiki Images
##################
- name: backup mediawiki images
  hosts: wiki_servers
  vars_files: ../../roles/mediawiki/vars/main.yml
  vars:
    mediawiki_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-mediawiki.tar.gz
  tags: mediawiki,wiki
  tasks:
    - name: compress images directory
      archive:
        path: '{{ mediawiki_home }}/images'
        dest: '{{ mediawiki_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ mediawiki_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ mediawiki_backup_tarball }}'
        state: absent


#########################
# Photostructure Database
#########################
- name: backup photostructure database
  hosts: photostructure_servers
  vars_files: ../../roles/photostructure/vars/main.yml
  vars:
    photostructure_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-photostructure.tar
  tags: photostructure
  tasks:
    - name: stop photostructure
      systemd:
        name: photostructure
        state: stopped

    - name: archive photostructure library
      archive:
        path: '{{ photostructure_library }}'
        dest: '{{ photostructure_backup_tarball }}'
        format: tar
        mode: 0400

    - name: start photostructure
      systemd:
        name: photostructure
        state: started

    - name: fetch backup tarball
      fetch:
        src: '{{ photostructure_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes
        validate_checksum: no  # The tarball is way too big.

    - name: delete backup tarball from remote host
      file:
        path: '{{ photostructure_backup_tarball }}'
        state: absent


###############
# Asterisk Data
###############
- name: backup asterisk data
  hosts: asterisk_servers
  vars_files: ../../roles/asterisk/vars/main.yml
  vars:
    asterisk_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-asterisk.tar.gz
  tags: asterisk
  tasks:
    - name: stop asterisk
      systemd:
        name: asterisk
        state: stopped

    - name: compress asterisk directory
      archive:
        path: '{{ asterisk_data_dir }}'
        dest: '{{ asterisk_backup_tarball }}'
        mode: 0400

    - name: start asterisk
      systemd:
        name: asterisk
        state: started

    - name: fetch backup tarball
      fetch:
        src: '{{ asterisk_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ asterisk_backup_tarball }}'
        state: absent


####################
# Cups Configuration
####################
- name: backup cups configuration
  hosts: cups_servers
  vars:
    cups_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-cups.tar.gz
  tags: cups
  tasks:
    - name: compress cups configuration
      archive:
        path:
          - /etc/cups/ppd
          - /etc/cups/printers.conf
        dest: '{{ cups_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ cups_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ cups_backup_tarball }}'
        state: absent


####################
# WebDAV Directories
####################
- name: backup webdav directories
  hosts: dav_servers
  vars_files: ../../roles/sabredav/vars/main.yml
  vars:
    sabredav_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-webdav.tar.gz
  tags: dav,sabredav,webdav
  tasks:
    - name: compress webdav directory
      archive:
        path: '{{ sabredav_home }}/webdav'
        dest: '{{ sabredav_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ sabredav_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ sabredav_backup_tarball }}'
        state: absent


###############
# Hastebin Data
###############
- name: backup hastebin data
  hosts: pastebin_servers
  vars_files: ../../roles/hastebin/vars/main.yml
  vars:
    hastebin_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-hastebin.tar.gz
  tags: pastebin,hastebin
  tasks:
    - name: compress paste directory
      archive:
        path: '{{ hastebin_data_dir }}'
        dest: '{{ hastebin_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ hastebin_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ hastebin_backup_tarball }}'
        state: absent


##################
# Psitransfer Data
##################
- name: backup psitransfer data
  hosts: filedrop_servers
  vars_files: ../../roles/psitransfer/vars/main.yml
  vars:
    psitransfer_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-psitransfer.tar.gz
  tags: psitransfer
  tasks:
    - name: compress files directory
      archive:
        path: '{{ psitransfer_data_dir }}'
        dest: '{{ psitransfer_backup_tarball }}'
        mode: 0400

    - name: fetch backup tarball
      fetch:
        src: '{{ psitransfer_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup tarball from remote host
      file:
        path: '{{ psitransfer_backup_tarball }}'
        state: absent


##################
# Apache WWW files
##################
- name: backup public apache files
  hosts: web_servers
  vars_files:
    - ../../roles/apache/vars/main.yml
  vars:
    apache_backup_tarball: /var/tmp/{{ backup_name }}-{{ inventory_hostname }}-www.tar.gz
  tags: apache,www
  tasks:
    - when: apache_backup_dirs | default([]) | length > 0
      block:
        - name: compress www directory
          archive:
            path: "{{ apache_backup_dirs | map('regex_replace', '^', apache_public_dir~'/') }}"
            dest: '{{ apache_backup_tarball }}'
            mode: 0400

        - name: fetch backup tarball
          fetch:
            src: '{{ apache_backup_tarball }}'
            dest: '{{ backup_path }}/'
            flat: yes

        - name: delete backup tarball from remote host
          file:
            path: '{{ apache_backup_tarball }}'
            state: absent


####################
# Unifi Controllers
####################
- name: backup unifi controllers
  hosts: unifi_controllers
  vars_files: ../../roles/unifi/vars/main.yml
  tags: unifi
  tasks:
    - name: collect autobackup files
      find:
        paths: '{{ unifi_autobackup_dir }}'
        patterns: '*.unf'
        file_type: file
      register: unifi_autobackups

    - name: fetch most recent autobackup file
      fetch:
        src: "{{ unifi_autobackups.files | sort(attribute='mtime') | map(attribute='path') | last }}"
        dest: '{{ backup_path }}/{{ backup_name }}-{{ inventory_hostname }}-unifi.unf'
        flat: yes


################
# FreeIPA Domain
################
- name: backup freeipa domain
  hosts: freeipa_master
  vars_files: ../../roles/freeipa_server/vars/main.yml
  vars:
    freeipa_backup_tarball: /var/tmp/{{ backup_name }}-ipa-{{ freeipa_realm }}.tar.gz
  tags: ipa,freeipa
  tasks:
    - name: create full ipa backup
      command: ipa-backup

    - name: collect files in backup directory
      find:
        paths: '{{ freeipa_backup_dir }}'
        patterns: ipa-full-*
        file_type: directory
      register: freeipa_backups

    - name: compress latest backup
      archive:
        path: "{{ freeipa_backups.files | sort(attribute='mtime') | map(attribute='path') | last }}"
        dest: '{{ freeipa_backup_tarball }}'
        mode: 0400
        remove: yes

    - name: fetch backup archive
      fetch:
        src: '{{ freeipa_backup_tarball }}'
        dest: '{{ backup_path }}/'
        flat: yes

    - name: delete backup archive from remote host
      file:
        path: '{{ freeipa_backup_tarball }}'
        state: absent


###############
# Print summary
###############
- hosts: localhost
  tags: always
  tasks:
    - debug:
        msg: Backup {{ backup_name }} written to {{ backup_path }}.