Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update submodules #33

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@
url = https://github.com/roles-ansible/ansible_role_packages.git
[submodule "collections/ansible_collections/prometheus/prometheus"]
path = collections/ansible_collections/prometheus/prometheus
url = https://github.com/prometheus-community/ansible
url = https://github.com/prometheus-community/ansible.git
[submodule "collections/ansible_collections/community/grafana"]
path = collections/ansible_collections/community/grafana
url = https://github.com/ansible-collections/community.grafana
url = https://github.com/ansible-collections/community.grafana.git
[submodule "collections/ansible_collections/grafana/grafana"]
path = collections/ansible_collections/grafana/grafana
url = https://github.com/grafana/grafana-ansible-collection
url = https://github.com/grafana/grafana-ansible-collection.git
[submodule "roles/unattended_upgrades"]
path = roles/unattended_upgrades
url = https://github.com/hifis-net/ansible-role-unattended-upgrades.git
Expand All @@ -137,4 +137,7 @@
url = https://github.com/ansible-collections/community.general.git
[submodule "roles/l3d.nginx_exporter"]
path = roles/l3d.nginx_exporter
url = https://github.com/roles-ansible/ansible_role_nginx_exporter
url = https://github.com/roles-ansible/ansible_role_nginx_exporter.git
[submodule "collections/ansible_collections/l3d/time"]
path = collections/ansible_collections/l3d/time
url = https://github.com/roles-ansible/ansible_collection_time.git
2 changes: 1 addition & 1 deletion collections/ansible_collections/community/general
Submodule general updated 99 files
+2 −2 .azure-pipelines/azure-pipelines.yml
+39 −2 .github/BOTMETA.yml
+6 −0 changelogs/fragments/000-redhat_subscription-dbus-on-7.4-plus.yaml
+4 −0 changelogs/fragments/7242-multi-values-for-same-name-in-git-config.yml
+2 −0 changelogs/fragments/7485-proxmox_vm_info-config.yml
+2 −0 changelogs/fragments/7540-proxmox-update config.yml
+4 −0 changelogs/fragments/7564-onepassword-lookup-case-insensitive.yaml
+2 −0 changelogs/fragments/7569-infiniband-slave-support.yml
+2 −0 changelogs/fragments/7577-fix-apt_rpm-module.yml
+2 −0 changelogs/fragments/7588-ipa-config-new-choice-passkey-to-ipauserauthtype.yml
+2 −0 changelogs/fragments/7589-ipa-config-new-choices-idp-and-passkey-to-ipauserauthtype.yml
+2 −0 changelogs/fragments/7600-proxmox_kvm-hookscript.yml
+2 −0 changelogs/fragments/7601-lvol-fix.yml
+2 −0 changelogs/fragments/7626-redfish-info-add-boot-progress-property.yml
+2 −0 changelogs/fragments/7641-fix-keycloak-api-client-to-quote-properly.yml
+2 −0 changelogs/fragments/7645-Keycloak-print-error-msg-from-server.yml
+2 −0 changelogs/fragments/7653-fix-cloudflare-lookup.yml
+2 −0 changelogs/fragments/7676-lvol-pvs-as-list.yml
+2 −0 changelogs/fragments/lxd-instance-not-found-avoid-false-positives.yml
+6 −0 docs/docsite/extra-docs.yml
+96 −0 docs/docsite/rst/guide_alicloud.rst
+49 −0 docs/docsite/rst/guide_online.rst
+214 −0 docs/docsite/rst/guide_packet.rst
+320 −0 docs/docsite/rst/guide_scaleway.rst
+1 −1 galaxy.yml
+5 −1 plugins/connection/lxd.py
+14 −3 plugins/lookup/onepassword.py
+154 −143 plugins/module_utils/identity/keycloak/keycloak.py
+1 −1 plugins/module_utils/redfish_utils.py
+20 −1 plugins/modules/apt_rpm.py
+3 −3 plugins/modules/cloudflare_dns.py
+99 −55 plugins/modules/git_config.py
+187 −0 plugins/modules/git_config_info.py
+408 −0 plugins/modules/gitlab_issue.py
+3 −2 plugins/modules/ipa_config.py
+3 −2 plugins/modules/ipa_user.py
+12 −9 plugins/modules/lvol.py
+1 −0 plugins/modules/nmcli.py
+301 −0 plugins/modules/nomad_token.py
+132 −5 plugins/modules/proxmox.py
+18 −0 plugins/modules/proxmox_kvm.py
+63 −43 plugins/modules/proxmox_vm_info.py
+27 −2 plugins/modules/redhat_subscription.py
+1 −0 tests/.gitignore
+1 −1 tests/integration/targets/alternatives/tasks/tests_set_priority.yml
+5 −5 tests/integration/targets/archive/tests/core.yml
+22 −8 tests/integration/targets/archive/tests/remove.yml
+56 −0 tests/integration/targets/cmd_runner/action_plugins/_unsafe_assert.py
+1 −1 tests/integration/targets/cmd_runner/tasks/test_cmd_echo.yml
+9 −9 tests/integration/targets/deploy_helper/tasks/main.yml
+16 −0 tests/integration/targets/ejabberd_user/tasks/main.yml
+5 −0 tests/integration/targets/git_config/files/gitconfig
+1 −0 tests/integration/targets/git_config/tasks/get_set_state_present_file.yml
+3 −0 tests/integration/targets/git_config/tasks/main.yml
+79 −0 tests/integration/targets/git_config/tasks/set_multi_value.yml
+39 −0 tests/integration/targets/git_config/tasks/set_value.yml
+2 −2 tests/integration/targets/git_config/tasks/set_value_with_tilde.yml
+28 −0 tests/integration/targets/git_config/tasks/unset_multi_value.yml
+7 −0 tests/integration/targets/git_config_info/aliases
+11 −0 tests/integration/targets/git_config_info/files/gitconfig
+7 −0 tests/integration/targets/git_config_info/meta/main.yml
+26 −0 tests/integration/targets/git_config_info/tasks/error_handling.yml
+19 −0 tests/integration/targets/git_config_info/tasks/get_all_values.yml
+20 −0 tests/integration/targets/git_config_info/tasks/get_multi_value.yml
+38 −0 tests/integration/targets/git_config_info/tasks/get_simple_value.yml
+33 −0 tests/integration/targets/git_config_info/tasks/main.yml
+15 −0 tests/integration/targets/git_config_info/tasks/setup.yml
+16 −0 tests/integration/targets/git_config_info/tasks/setup_file.yml
+16 −0 tests/integration/targets/git_config_info/tasks/setup_global.yml
+7 −0 tests/integration/targets/git_config_info/vars/main.yml
+6 −0 tests/integration/targets/gitlab_issue/aliases
+15 −0 tests/integration/targets/gitlab_issue/defaults/main.yml
+9 −0 tests/integration/targets/gitlab_issue/files/description.md
+150 −0 tests/integration/targets/gitlab_issue/tasks/main.yml
+1 −1 tests/integration/targets/ini_file/tasks/tests/00-basic.yml
+0 −2 tests/integration/targets/lookup_passwordstore/tasks/main.yml
+4 −4 tests/integration/targets/lvg/tasks/test_active_change.yml
+12 −0 tests/integration/targets/lvol/aliases
+8 −0 tests/integration/targets/lvol/meta/main.yml
+24 −0 tests/integration/targets/lvol/tasks/main.yml
+57 −0 tests/integration/targets/lvol/tasks/setup.yml
+40 −0 tests/integration/targets/lvol/tasks/teardown.yml
+64 −0 tests/integration/targets/lvol/tasks/test_pvs.yml
+3 −3 tests/integration/targets/osx_defaults/tasks/main.yml
+10 −2 tests/integration/targets/setup_java_keytool/tasks/main.yml
+2 −1 tests/integration/targets/setup_java_keytool/vars/Alpine.yml
+2 −1 tests/integration/targets/setup_java_keytool/vars/Archlinux.yml
+8 −0 tests/integration/targets/setup_java_keytool/vars/Debian-12.yml
+2 −1 tests/integration/targets/setup_java_keytool/vars/Debian.yml
+2 −1 tests/integration/targets/setup_java_keytool/vars/RedHat.yml
+2 −1 tests/integration/targets/setup_java_keytool/vars/Suse.yml
+26 −0 tests/integration/targets/setup_postgresql_db/tasks/main.yml
+5 −1 tests/sanity/extra/botmeta.py
+1 −1 tests/unit/plugins/lookup/onepassword_common.py
+2 −2 tests/unit/plugins/lookup/onepassword_fixtures/v2_out_01.json
+222 −0 tests/unit/plugins/modules/test_nomad_token.py
+38 −11 tests/unit/plugins/modules/test_proxmox_vm_info.py
+2 −0 tests/unit/plugins/modules/test_redhat_subscription.py
+4 −0 tests/unit/requirements.txt
1 change: 1 addition & 0 deletions collections/ansible_collections/l3d/time
Submodule time added at 1a200d
3 changes: 3 additions & 0 deletions host_vars/mail01.l3d.space/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ fail2ban_jail_configuration:

nginx__infrastructure_domain__enabled: false

# l3d.time.ntp
ntp_statistics: true

# l3d.nginx_exporter
nginx_exporter_listen_address: '127.0.0.1:9113'
nginx_exporter_scrape_uri: 'https://node-exporter.mail01.l3d.space/nginx_status'
2 changes: 1 addition & 1 deletion roles/robertdebock.dovecot
2 changes: 1 addition & 1 deletion roles/robertdebock.fail2ban
2 changes: 1 addition & 1 deletion roles/unattended_upgrades
2 changes: 1 addition & 1 deletion site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- {role: unattended_upgrades, tags: [default, unattended, unattended_upgrades, security], become: true, when: ansible_distribution == 'Debian'}
- {role: do1jlr.rtl_nic_firmware, tags: [apu, rtl_nic, firmware]}
- {role: do1jlr.avahi_client, tags: [avahi, avahi_client]}
- {role: do1jlr.ntp, tags: [ntp]}
- {role: l3d.time.ntp, tags: [ntp]}
- {role: prometheus.prometheus.node_exporter, tags: [monitoring, node_exporter]}

- name: User specific roles for all hosts
Expand Down