From 7eac30127ade098fbdae3d635e2daebf06395457 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Mon, 1 Jul 2024 10:20:21 +0200 Subject: [PATCH] ipamodule_base_docs: Documentation: Fix default for delete_continue The default setting for delete_continue was True instead of true for delete_continue in the DOCUMENTATION section. --- plugins/doc_fragments/ipamodule_base_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/doc_fragments/ipamodule_base_docs.py b/plugins/doc_fragments/ipamodule_base_docs.py index 97aaffdd..59d95ca4 100644 --- a/plugins/doc_fragments/ipamodule_base_docs.py +++ b/plugins/doc_fragments/ipamodule_base_docs.py @@ -56,5 +56,5 @@ options: Continuous mode. Don't stop on errors. Valid only if `state` is `absent`. aliases: ["continue"] type: bool - default: True + default: true """ -- GitLab