Skip to content
Snippets Groups Projects
Unverified Commit 464fefb1 authored by Jason Anderson's avatar Jason Anderson
Browse files

[gnocchi] Don't recursively modify file perms on start

For deployments with a lot of Gnocchi data, this is a non-starter
(literally... the service basically can't start.) There maybe needs to
be a way to configure this, or only do it during deploy/bootstrap?
Unclear, but disabling for now; users can `chown -R gnocchi:gnocchi`
themselves in the meantime if need be.

Change-Id: I0bae6dfbbee9f63506c89bd6b392e7be07fd5930
parent b7098faf
No related branches found
No related tags found
No related merge requests found
...@@ -38,8 +38,7 @@ ...@@ -38,8 +38,7 @@
"permissions": [ "permissions": [
{ {
"path": "/var/lib/gnocchi", "path": "/var/lib/gnocchi",
"owner": "gnocchi:gnocchi", "owner": "gnocchi:gnocchi"
"recurse": true
}, },
{ {
"path": "/var/log/kolla/gnocchi", "path": "/var/log/kolla/gnocchi",
......
...@@ -29,8 +29,7 @@ ...@@ -29,8 +29,7 @@
"permissions": [ "permissions": [
{ {
"path": "/var/lib/gnocchi", "path": "/var/lib/gnocchi",
"owner": "gnocchi:gnocchi", "owner": "gnocchi:gnocchi"
"recurse": true
}, },
{ {
"path": "/var/log/kolla/gnocchi", "path": "/var/log/kolla/gnocchi",
......
...@@ -29,8 +29,7 @@ ...@@ -29,8 +29,7 @@
"permissions": [ "permissions": [
{ {
"path": "/var/lib/gnocchi", "path": "/var/lib/gnocchi",
"owner": "gnocchi:gnocchi", "owner": "gnocchi:gnocchi"
"recurse": true
}, },
{ {
"path": "/var/log/kolla/gnocchi", "path": "/var/log/kolla/gnocchi",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment