From 84df105a3d350002c5d02c3c3b3d4033fa940d3d Mon Sep 17 00:00:00 2001 From: sheidan Date: Sat, 19 Jul 2025 07:32:59 -0400 Subject: [PATCH] Fix path and value are mutually exclusive --- plugins/modules/dconf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/modules/dconf.py b/plugins/modules/dconf.py index a7f067fd85..9d6ff79f2f 100644 --- a/plugins/modules/dconf.py +++ b/plugins/modules/dconf.py @@ -481,6 +481,9 @@ def main(): ('state', 'present', ['value']), ('state', 'load', ['path']), ], + mutually_exclusive=[ + ['value', 'path'] + ], ) if Variant is None: