Browse Source

fix postgres backup routine

master
parent
commit
4edd149faf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tasks/backup.yaml

+ 2
- 2
tasks/backup.yaml View File

@@ -19,8 +19,8 @@
stdin: "{{nextcloud_database_pass}}"
when: nextcloud_database_type == "mysql"

- name: drop postgresql database
shell: sudo -u postgres pg_dump -O
- name: dump postgresql database
shell: sudo -u postgres pg_dump -O "{{nextcloud_database_name}}"
> "{{nextcloud_backup_directory}}/{{_nextcloud_actual_version}}/database.pgsql"
delegate_to: "{{ (nextcloud_database_host != 'localhost') | ternary(nextcloud_database_host,inventory_hostname) }}"
when: nextcloud_database_type == "postgresql"

Loading…
Cancel
Save