From 77a7f2020109c3358f14bd6c5f560222575f3d74 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:39:58 +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: Ia4185b9af54fbd6e70db3aa37a5799cce44db934 Signed-off-by: Kevin Carter --- tasks/main.yml | 1 - tasks/nova_compute.yml | 1 - tasks/nova_install_source.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 64c3b696..73a54390 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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 }}" diff --git a/tasks/nova_compute.yml b/tasks/nova_compute.yml index 292d6270..09c01804 100644 --- a/tasks/nova_compute.yml +++ b/tasks/nova_compute.yml @@ -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({}) }}" diff --git a/tasks/nova_install_source.yml b/tasks/nova_install_source.yml index ae338bc1..c2f25b2e 100644 --- a/tasks/nova_install_source.yml +++ b/tasks/nova_install_source.yml @@ -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 }}"