diff --git a/CHANGELOG.md b/CHANGELOG.md index dc39459..9da9c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG — Set-OPS +## 2026-06-25 + +### Corrigé +- **`make instancier-appliquer FORCE=1` n'honorait pas `--force`.** La recette Makefile lançait `instancier.py appliquer` sans relayer `FORCE` ; le message « Utilise FORCE=1 » était donc trompeur (un changement de plan intentionnel restait bloqué). La recette passe désormais `$(if $(FORCE),--force)`. Trouvé en dogfooding. + ## 2026-06-24 — Première publication publique Première mise à disposition publique de **Set-OPS**, moteur Ansible d'écosystèmes diff --git a/Makefile b/Makefile index 27a5034..b62d1b9 100644 --- a/Makefile +++ b/Makefile @@ -402,7 +402,7 @@ instancier: _instance-requise python3 scripts/instancier.py comparer instancier-appliquer: _instance-requise - python3 scripts/instancier.py appliquer + python3 scripts/instancier.py appliquer $(if $(FORCE),--force) bases: python3 scripts/bases_donnees.py lister