From 6e4527aff5c633db6447484f16922ee830113d77 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:39:32 +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: I23ad798b251493d75acf1a92f3d5a95d96d02938 Signed-off-by: Kevin Carter --- tasks/cinder_install.yml | 1 - tasks/cinder_install_source.yml | 1 - tasks/main.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/tasks/cinder_install.yml b/tasks/cinder_install.yml index f06cbaff..6fbeb374 100644 --- a/tasks/cinder_install.yml +++ b/tasks/cinder_install.yml @@ -43,7 +43,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ cinder_system_user_name }}" systemd_group_name: "{{ cinder_system_group_name }}" diff --git a/tasks/cinder_install_source.yml b/tasks/cinder_install_source.yml index f163c0e5..48615c0e 100644 --- a/tasks/cinder_install_source.yml +++ b/tasks/cinder_install_source.yml @@ -37,7 +37,6 @@ - name: Install the python venv include_role: name: "python_venv_build" - private: yes vars: venv_build_distro_package_list: "{{ cinder_devel_distro_packages }}" venv_install_destination_path: "{{ cinder_bin | dirname }}" diff --git a/tasks/main.yml b/tasks/main.yml index 00db1439..01ba5253 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -75,7 +75,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_service_enabled: "{{ ((cinder_services['cinder-volume']['group'] in group_names) and (cinder_ceilometer_enabled | bool)) | ternary(true, false) }}" systemd_service_restart_changed: false