From ae0620f4c60412b62340b45d59f19378d8119003 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:39:33 +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: Id03e7e34f735f5c6129fcc1fb837a7b5c973bd84 Signed-off-by: Kevin Carter --- tasks/congress_install.yml | 1 - tasks/main.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/tasks/congress_install.yml b/tasks/congress_install.yml index 730ff89..7f7d384 100644 --- a/tasks/congress_install.yml +++ b/tasks/congress_install.yml @@ -38,7 +38,6 @@ - name: Install the python venv include_role: name: "python_venv_build" - private: yes vars: venv_build_distro_package_list: "{{ congress_devel_distro_packages }}" venv_install_destination_path: "{{ congress_bin | dirname }}" diff --git a/tasks/main.yml b/tasks/main.yml index 8749938..f8205a1 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -41,7 +41,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ congress_system_user_name }}" systemd_group_name: "{{ congress_system_group_name }}"