diff --git a/nova/core/galaxy.yml b/nova/core/galaxy.yml index de35493aa..9552db082 100644 --- a/nova/core/galaxy.yml +++ b/nova/core/galaxy.yml @@ -1,6 +1,6 @@ namespace: nova name: core -version: 7.4.3 +version: 7.4.5 readme: README.md authors: - https://github.com/novateams diff --git a/nova/core/roles/cleanup/defaults/main.yml b/nova/core/roles/cleanup/defaults/main.yml index 0768fe858..2c166d144 100644 --- a/nova/core/roles/cleanup/defaults/main.yml +++ b/nova/core/roles/cleanup/defaults/main.yml @@ -1,3 +1,11 @@ --- cleanup_remove_bash_history: true cleanup_post_reboot: false # Set to true to reboot the system after cleanup + +############ +# RouterOS # +############ + +# Use this variable to specify the commands to be executed on RouterOS devices during cleanup. By default, it clears the console history. +cleanup_routeros_commands: + - /console clear-history diff --git a/nova/core/roles/cleanup/tasks/routeros.yml b/nova/core/roles/cleanup/tasks/routeros.yml index 0c2e12530..24b1de1ce 100644 --- a/nova/core/roles/cleanup/tasks/routeros.yml +++ b/nova/core/roles/cleanup/tasks/routeros.yml @@ -1,6 +1,4 @@ --- - name: Cleaning up RouterOS... community.routeros.command: - commands: - - /system note set show-at-login=no - - /console clear-history + commands: "{{ cleanup_routeros_commands }}" diff --git a/nova/core/roles/gitlab/defaults/main.yml b/nova/core/roles/gitlab/defaults/main.yml index 60f20b465..9a8414297 100644 --- a/nova/core/roles/gitlab/defaults/main.yml +++ b/nova/core/roles/gitlab/defaults/main.yml @@ -1,6 +1,6 @@ --- ### gitlab general -gitlab_version: 18.9.2-ee.0 +gitlab_version: 18.9.3-ee.0 gitlab_ssh_port: 10022 # Increase gitlab ssh MaxAuthTries to avoid connection issues for users with more than 6 keys in their SSH agent set to {} to disable gitlab_ssh_max_auth_tries: 20 diff --git a/nova/core/roles/nexus/defaults/main.yml b/nova/core/roles/nexus/defaults/main.yml index 54f59fe73..dd40c8e92 100644 --- a/nova/core/roles/nexus/defaults/main.yml +++ b/nova/core/roles/nexus/defaults/main.yml @@ -9,7 +9,7 @@ nexus_configure_ldap: false # Set to true to also configure LDAP after installat nexus_create_repos: false # Set to true to also create default repositories after installation nexus_allow_anonymous_access: true # Set to false to disable anonymous access nexus_active_encryption_key_id: Primary Encryption Key # Name of the active encryption key that comes with this role -nexus_version: 3.90.1 # Nexus version to install +nexus_version: 3.90.2 # Nexus version to install # Default is the built-in Nexus admin user. If set to a different value than admin, the role will create the user. nexus_admin_username: admin diff --git a/nova/core/roles/os_configuration/tasks/opnsense.yml b/nova/core/roles/os_configuration/tasks/opnsense.yml index a6c882354..a9b6f4ff7 100644 --- a/nova/core/roles/os_configuration/tasks/opnsense.yml +++ b/nova/core/roles/os_configuration/tasks/opnsense.yml @@ -40,9 +40,10 @@ owner: root group: wheel -- name: Reloading OPNsense configuration for {{ inventory_hostname }}... - ansible.builtin.command: /etc/rc.reload_all - changed_when: true +- name: Reloading configuration for {{ inventory_hostname }}... + ansible.builtin.service: + name: configd + state: restarted - name: Removing local config.xml file... ansible.builtin.file: