Add empty lines
This commit is contained in:
parent
006b42c175
commit
7f4d59dbe4
2 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
file:
|
file:
|
||||||
dest: /tmp/git_repos.tar.gz
|
dest: /tmp/git_repos.tar.gz
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Archive "/home/git"
|
- name: Archive "/home/git"
|
||||||
archive:
|
archive:
|
||||||
path: /home/git
|
path: /home/git
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 'u=rw,g=r,o='
|
mode: 'u=rw,g=r,o='
|
||||||
|
|
||||||
- name: Fetch archive of "/home/git"
|
- name: Fetch archive of "/home/git"
|
||||||
fetch:
|
fetch:
|
||||||
src: /tmp/git_repos.tar.gz
|
src: /tmp/git_repos.tar.gz
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
file:
|
file:
|
||||||
dest: /tmp/wiki_pg_dump
|
dest: /tmp/wiki_pg_dump
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Dump PostgreSQL database
|
- name: Dump PostgreSQL database
|
||||||
shell: >
|
shell: >
|
||||||
PGPASSWORD={{ crypto_libertarian_wiki_db_password }}
|
PGPASSWORD={{ crypto_libertarian_wiki_db_password }}
|
||||||
|
@ -19,6 +20,7 @@
|
||||||
--dbname
|
--dbname
|
||||||
{{ crypto_libertarian_wiki_db_name }}
|
{{ crypto_libertarian_wiki_db_name }}
|
||||||
> /tmp/wiki_pg_dump
|
> /tmp/wiki_pg_dump
|
||||||
|
|
||||||
- name: Fetch dump of PostgreSQL database
|
- name: Fetch dump of PostgreSQL database
|
||||||
fetch:
|
fetch:
|
||||||
src: /tmp/wiki_pg_dump
|
src: /tmp/wiki_pg_dump
|
||||||
|
@ -28,6 +30,7 @@
|
||||||
file:
|
file:
|
||||||
dest: /tmp/wiki_images.tar.gz
|
dest: /tmp/wiki_images.tar.gz
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Archive "/var/www/wiki/images"
|
- name: Archive "/var/www/wiki/images"
|
||||||
archive:
|
archive:
|
||||||
path: /var/www/wiki/images
|
path: /var/www/wiki/images
|
||||||
|
@ -36,6 +39,7 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 'u=rw,g=r,o='
|
mode: 'u=rw,g=r,o='
|
||||||
|
|
||||||
- name: Fetch archive of "/var/www/wiki/images"
|
- name: Fetch archive of "/var/www/wiki/images"
|
||||||
fetch:
|
fetch:
|
||||||
src: /tmp/wiki_images.tar.gz
|
src: /tmp/wiki_images.tar.gz
|
||||||
|
|
Reference in a new issue