From ba232fdadde99581cf289a0a2a545041af821ced Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:39:53 +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: I05554a6454308a25d1c50a58e34303821fcad273 Signed-off-by: Kevin Carter --- tasks/magnum_install.yml | 1 - tasks/main.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/tasks/magnum_install.yml b/tasks/magnum_install.yml index 3038869..766baec 100644 --- a/tasks/magnum_install.yml +++ b/tasks/magnum_install.yml @@ -37,7 +37,6 @@ - name: Install the python venv include_role: name: "python_venv_build" - private: yes vars: venv_install_destination_path: "{{ magnum_bin | dirname }}" venv_install_distro_package_list: "{{ magnum_distro_packages }}" diff --git a/tasks/main.yml b/tasks/main.yml index 10325a2..ab68ffa 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -38,7 +38,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ magnum_system_user_name }}" systemd_group_name: "{{ magnum_system_group_name }}"