From f393f21d3bf3df35b4eff27dfe506c699114f1c0 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:32:19 +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: I0fe59819c7e2594188e93d7cc482abff74495b8e Signed-off-by: Kevin Carter --- tasks/heat_install_source.yml | 1 - tasks/main.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/tasks/heat_install_source.yml b/tasks/heat_install_source.yml index d1308d7..87c5746 100644 --- a/tasks/heat_install_source.yml +++ b/tasks/heat_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: "{{ heat_bin | dirname }}" venv_install_distro_package_list: "{{ heat_distro_packages }}" diff --git a/tasks/main.yml b/tasks/main.yml index 42aaec4..c30ec81 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -62,7 +62,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ heat_system_user_name }}" systemd_group_name: "{{ heat_system_group_name }}"