From 1d15baf405bbcece548a4d70ea46db39f0184b56 Mon Sep 17 00:00:00 2001 From: Max Gautier Date: Mon, 12 May 2025 09:29:26 +0200 Subject: [PATCH] Add compat and deprecation warning for boostrap-os --- roles/bootstrap-os/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 roles/bootstrap-os/tasks/main.yml diff --git a/roles/bootstrap-os/tasks/main.yml b/roles/bootstrap-os/tasks/main.yml new file mode 100644 index 000000000..f4d538507 --- /dev/null +++ b/roles/bootstrap-os/tasks/main.yml @@ -0,0 +1,10 @@ +--- +- name: Warn for usage of deprecated role + fail: + msg: bootstrap-os is deprecated, switch to bootstrap_os + ignore_errors: true # noqa ignore-errors + run_once: true + +- name: Compat for direct role import + import_role: + name: bootstrap_os