From 5e5a206c01598d4f14b719a4b521ff0de65c1eba Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:39:55 +0000 Subject: [PATCH] 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: Iccf685adfe017382f93b5032bf15dce5ae0de417 Signed-off-by: Kevin Carter --- tasks/main.yml | 1 - tasks/neutron_install_source.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 1ac2256e..36376e4c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -92,7 +92,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ neutron_system_user_name }}" systemd_group_name: "{{ neutron_system_group_name }}" diff --git a/tasks/neutron_install_source.yml b/tasks/neutron_install_source.yml index e5f2616b..043fbb98 100644 --- a/tasks/neutron_install_source.yml +++ b/tasks/neutron_install_source.yml @@ -37,7 +37,6 @@ - name: Install the python venv include_role: name: "python_venv_build" - private: yes vars: venv_install_destination_path: "{{ neutron_bin | dirname }}" venv_install_distro_package_list: "{{ neutron_package_list }}"