From ba8af72c6f0f0f44e468e518709e3ccc6693ebf5 Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Thu, 7 May 2015 15:16:22 +0100 Subject: [PATCH] Managed /etc/swift/backups using ansible If the permissions on /etc/swift/backups are not swift.swift it can cause the copying of the ring files to fail. This patch adds /etc/swift/backups to the list of directories managed by ansible when setting up/configuring swift. Change-Id: I3937efc54f03e25f504937213a99bde19789aa59 Closes-Bug: #1452743 --- tasks/swift_pre_install.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/swift_pre_install.yml b/tasks/swift_pre_install.yml index 94a465d0..b17dd405 100644 --- a/tasks/swift_pre_install.yml +++ b/tasks/swift_pre_install.yml @@ -43,6 +43,7 @@ - { path: "/etc/sudoers.d", mode: "0750", owner: "root", group: "root" } - { path: "/etc/swift" } - { path: "/etc/swift/account-server" } + - { path: "/etc/swift/backups" } - { path: "/etc/swift/container-server" } - { path: "/etc/swift/object-server" } - { path: "/etc/swift/proxy-server" }