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
This commit is contained in:
Kyle L. Henderson 2016-06-06 15:01:28 -05:00
parent 5a02f2af0a
commit 3ad2855393

View File

@ -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: