From c8cb23a492296d1a538f45312eb9efb2786635a4 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Sat, 23 Feb 2019 11:09:04 -0600 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: I11ca7c3beed3bdabd6fcb517242a41180d1a4e63 Signed-off-by: Kevin Carter --- tasks/main.yml | 2 -- tasks/zun_db_setup.yml | 1 - tasks/zun_install.yml | 1 - 3 files changed, 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index f221619..8be24d6 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -83,7 +83,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_user_name: "{{ zun_system_user_name }}" systemd_group_name: "{{ zun_system_group_name }}" @@ -111,7 +110,6 @@ - name: Run the etcd service role include_role: name: etcd - private: true vars: etcd_cluster_group: "zun_api" when: diff --git a/tasks/zun_db_setup.yml b/tasks/zun_db_setup.yml index c36a902..26faf42 100644 --- a/tasks/zun_db_setup.yml +++ b/tasks/zun_db_setup.yml @@ -16,7 +16,6 @@ - name: Run the galera client role include_role: name: galera_client - private: true - name: Create DB for service mysql_db: diff --git a/tasks/zun_install.yml b/tasks/zun_install.yml index a82f5ec..5a228b5 100644 --- a/tasks/zun_install.yml +++ b/tasks/zun_install.yml @@ -38,7 +38,6 @@ - name: Install the python venv include_role: name: "python_venv_build" - private: yes vars: venv_install_destination_path: "{{ zun_bin | dirname }}" venv_install_distro_package_list: "{{ zun_distro_packages }}"