Skip to content
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
4 changes: 2 additions & 2 deletions ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ roles_path = ~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:../rol
timeout = 90
host_key_checking = True
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=yes
; improving preformances through pipelining
pipelining = True
; improving preformances through pipelining - disabled due to race conditions on first install
; pipelining = True

[galaxy]
url = https://galaxy.ansible.com/
2 changes: 1 addition & 1 deletion setup-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
ansible.builtin.git:
repo: https://github.com/konstruktoid/ansible-role-hardening.git
dest: "{{ lookup('env', 'HOME') }}/.ansible/roles/konstruktoid.hardening"
version: 'v4.0.1' # Pinned version for reproducibility
version: 'v4.2.0' # Pinned version for reproducibility
delegate_to: localhost
run_once: true
tags: [hardening, setup, role-download]
Expand Down
2 changes: 1 addition & 1 deletion testing/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
roles:
- name: konstruktoid.hardening
version: 'v4.0.1'
version: 'v4.2.0'
src: https://github.com/konstruktoid/ansible-role-hardening.git
scm: git
Loading