From 3279aed459731f995005282d8b67fc1fa31f5268 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 22 Feb 2019 00:30:34 +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: I7678c1a5de07cda066dcf1e24684300fef56e0ba Signed-off-by: Kevin Carter --- tasks/main.yml | 1 - tests/test-nspawn-host-setup.yml | 2 -- 2 files changed, 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 6fb4516..a8802a4 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -352,7 +352,6 @@ - name: Run the systemd-networkd role include_role: name: systemd_networkd - private: true vars: systemd_networkd_prefix: "nspawn_container" systemd_run_networkd: true diff --git a/tests/test-nspawn-host-setup.yml b/tests/test-nspawn-host-setup.yml index 3764976..a1d14d1 100644 --- a/tests/test-nspawn-host-setup.yml +++ b/tests/test-nspawn-host-setup.yml @@ -92,7 +92,6 @@ - name: Run the systemd-networkd role include_role: name: systemd_networkd - private: true vars: systemd_networkd_prefix: "nspawn_host" systemd_interface_cleanup: true @@ -127,7 +126,6 @@ - name: Run the systemd service role include_role: name: systemd_service - private: true vars: systemd_services: - service_name: "networking-post-up"