From 1b13976eac7fdb8c23b0484727bcdde0ec853917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leander=20M=C3=BCller-Osten?= Date: Wed, 14 Aug 2024 17:41:00 +0200 Subject: [PATCH] added gpgkey argument to deb_remote module --- plugins/modules/deb_remote.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/modules/deb_remote.py b/plugins/modules/deb_remote.py index e72d484c..0de96d41 100644 --- a/plugins/modules/deb_remote.py +++ b/plugins/modules/deb_remote.py @@ -23,6 +23,10 @@ description: - Whitespace separated list of distributions to sync. type: str + gpgkey: + description: + - gpgkey of remote repository + type: str policy: description: - Whether downloads should be performed immediately, or lazy. @@ -111,6 +115,7 @@ def main(): "architectures": {}, "components": {}, "distributions": {}, + "gpgkey": {}, "policy": {"choices": ["immediate", "on_demand", "streamed"]}, "sync_installer": {"type": "bool"}, "sync_sources": {"type": "bool"}, @@ -127,6 +132,7 @@ def main(): "components", "distributions", "download_concurrency", + "gpgkey", "policy", "sync_installer", "sync_sources",