From 3ad285539356ab649757d16cb8b1fc3cc8c613cc Mon Sep 17 00:00:00 2001 From: "Kyle L. Henderson" Date: Mon, 6 Jun 2016 15:01:28 -0500 Subject: [PATCH] Fix nova_system_group_uid variable name The documented variable to use to set the nova group uid is: nova_system_group_gid. Correct the variable name in the nova_pre_install.yml task. Change-Id: Ia4316c00c7dacae730c0802a9119141757e1eab6 Closes-Bug: 1589663 --- tasks/nova_pre_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/nova_pre_install.yml b/tasks/nova_pre_install.yml index f1eefa21..cf420c4d 100644 --- a/tasks/nova_pre_install.yml +++ b/tasks/nova_pre_install.yml @@ -16,7 +16,7 @@ - name: create the system group group: name: "{{ nova_system_group_name }}" - gid: "{{ nova_system_group_uid|default(omit) }}" + gid: "{{ nova_system_group_gid|default(omit) }}" state: "present" system: "yes" tags: