Remove the private option from include_role

The private option on include role was never implemented and
will no longer be developed. This change removes the option
so ansible no longer raises a deprecation warning.

Change-Id: Ia4185b9af54fbd6e70db3aa37a5799cce44db934
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2019-02-22 00:39:58 +00:00
parent f826f9c7bc
commit 77a7f20201
3 changed files with 0 additions and 3 deletions

View File

@ -140,7 +140,6 @@
- name: Run the systemd service role
include_role:
name: systemd_service
private: true
vars:
systemd_user_name: "{{ nova_system_user_name }}"
systemd_group_name: "{{ nova_system_group_name }}"

View File

@ -28,7 +28,6 @@
- name: Run the systemd mount role
include_role:
name: systemd_mount
private: true
vars:
systemd_mounts:
- config_overrides: "{{ mount_var.config_overrides | default({}) }}"

View File

@ -38,7 +38,6 @@
- name: Install the python venv
include_role:
name: "python_venv_build"
private: yes
vars:
venv_build_distro_package_list: "{{ nova_devel_distro_packages }}"
venv_install_destination_path: "{{ nova_bin | dirname }}"