71fbf63c88
For Swift, the *.json.j2 templates are looking under {{ container_config_directory }} whereas they need to be looking in the common location for swift which is /var/lib/kolla/swift Change-Id: I6f0dcbc9a705b36d1d98275ba9ebc56404fe882d backport: liberty Closes-Bug: #1504210
24 lines
700 B
Django/Jinja
24 lines
700 B
Django/Jinja
{
|
|
"command": "/usr/bin/swift-account-server /etc/swift/account-server.conf --verbose",
|
|
"config_files": [
|
|
{
|
|
"source": "/var/lib/kolla/swift/swift.conf",
|
|
"dest": "/etc/swift/swift.conf",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/swift/account.ring.gz",
|
|
"dest": "/etc/swift/account.ring.gz",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/account-server.conf",
|
|
"dest": "/etc/swift/account-server.conf",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
}
|
|
]
|
|
}
|