Skip to content
Snippets Groups Projects
Commit 62e7f95c authored by Yongfeng Du's avatar Yongfeng Du
Browse files

Fix /etc/kolla permission

Add preceding 0 to the permission, otherwise it will be regard as decimal.

TrivialFix

Change-Id: I762b38a71143df9f378f74e534643534f2bc68b8
parent 43517f48
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
recurse: yes recurse: yes
owner: kolla owner: kolla
group: kolla group: kolla
mode: 755 mode: 0755
become: True become: True
when: create_kolla_user | bool == True when: create_kolla_user | bool == True
...@@ -132,6 +132,6 @@ ...@@ -132,6 +132,6 @@
path: /etc/kolla path: /etc/kolla
state: directory state: directory
recurse: yes recurse: yes
mode: 666 mode: 0666
become: True become: True
when: create_kolla_user | bool == False when: create_kolla_user | bool == False
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