Skip to content
Open
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
2 changes: 1 addition & 1 deletion nova/core/galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: nova
name: core
version: 7.4.3
version: 7.4.5
readme: README.md
authors:
- https://github.com/novateams
Expand Down
8 changes: 8 additions & 0 deletions nova/core/roles/cleanup/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 1 addition & 3 deletions nova/core/roles/cleanup/tasks/routeros.yml
Original file line number Diff line number Diff line change
@@ -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 }}"
2 changes: 1 addition & 1 deletion nova/core/roles/gitlab/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion nova/core/roles/nexus/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions nova/core/roles/os_configuration/tasks/opnsense.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading