diff --git a/changelogs/fragments/52536-jenkins_plugin-update_url.yaml b/changelogs/fragments/52536-jenkins_plugin-update_url.yaml new file mode 100644 index 0000000000..748c55a622 --- /dev/null +++ b/changelogs/fragments/52536-jenkins_plugin-update_url.yaml @@ -0,0 +1,2 @@ +minor_changes: + - jenkins_plugin - Set new default value for the update_url parameter (https://github.com/ansible/ansible/issues/52086) diff --git a/lib/ansible/modules/web_infrastructure/jenkins_plugin.py b/lib/ansible/modules/web_infrastructure/jenkins_plugin.py index e665c63318..61ce47d119 100644 --- a/lib/ansible/modules/web_infrastructure/jenkins_plugin.py +++ b/lib/ansible/modules/web_infrastructure/jenkins_plugin.py @@ -65,7 +65,7 @@ options: - URL of the Update Centre. - Used as the base URL to download the plugins and the I(update-center.json) JSON file. - default: https://updates.jenkins-ci.org + default: https://updates.jenkins.io url: description: - URL of the Jenkins server. @@ -718,7 +718,7 @@ def main(): default='present'), timeout=dict(default=30, type="int"), updates_expiration=dict(default=86400, type="int"), - updates_url=dict(default='https://updates.jenkins-ci.org'), + updates_url=dict(default='https://updates.jenkins.io'), url=dict(default='http://localhost:8080'), url_password=dict(no_log=True), version=dict(),