浏览代码

fix postgres backup routine

master
父节点
当前提交
4edd149faf
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      tasks/backup.yaml

+ 2
- 2
tasks/backup.yaml 查看文件

@@ -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"

正在加载...
取消
保存