From e6ea57970f61539c71db97b8eb3ca2eda42c4483 Mon Sep 17 00:00:00 2001 From: Jeffrey Zhang Date: Fri, 13 Oct 2017 09:51:43 +0800 Subject: [PATCH] Use root as the default node config user Use kolla will have upgrade issue and kolla user may not exist too during deployment. Partial-Implements: blueprint ansible-specific-task-become Change-Id: Ida3b645dcf86191b22e80d1b67694ccfb8fd9144 --- ansible/group_vars/all.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 65d43c8853..daadbaaf37 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -15,9 +15,10 @@ project: "" # The directory to store the config files on the destination node node_config_directory: "/etc/kolla/{{ project }}" -# The group which own node_config_directory -config_owner_user: "kolla" -config_owner_group: "kolla" +# The group which own node_config_directory, you can use a non-root +# user to deploy kolla +config_owner_user: "root" +config_owner_group: "root" ###################