From 707a3fc1d0e60dd214bf667b219e6cd75d4cf4b2 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 27 Aug 2025 22:58:05 +0200 Subject: [PATCH] Optimized defaults for modes --- group_vars/all/01_modes.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/group_vars/all/01_modes.yml b/group_vars/all/01_modes.yml index 792c9481..84a3c0c1 100644 --- a/group_vars/all/01_modes.yml +++ b/group_vars/all/01_modes.yml @@ -1,10 +1,10 @@ # Mode # The following modes can be combined with each other -MODE_TEST: false # Executes test routines instead of productive routines -MODE_UPDATE: true # Executes updates -MODE_BACKUP: true # Activates the backup before the update procedure -MODE_CLEANUP: true # Cleanup unused files and configurations -MODE_DEBUG: false # This enables debugging in ansible and in the apps, You SHOULD NOT enable this on production servers -MODE_RESET: false # Cleans up all Infinito.Nexus files. It's necessary to run to whole playbook and not particial roles when using this function. -MODE_ASSERT: false # Executes validation tasks during the run. \ No newline at end of file +MODE_TEST: false # Executes test routines instead of productive routines +MODE_UPDATE: true # Executes updates +MODE_DEBUG: false # This enables debugging in ansible and in the apps, You SHOULD NOT enable this on production servers +MODE_RESET: false # Cleans up all Infinito.Nexus files. It's necessary to run to whole playbook and not particial roles when using this function. +MODE_BACKUP: "{{ MODE_UPDATE }}" # Activates the backup before the update procedure +MODE_CLEANUP: "{{ MODE_DEBUG }}" # Cleanup unused files and configurations +MODE_ASSERT: "{{ MODE_DEBUG }}" # Executes validation tasks during the run.