Skip to content

Commit 0c1345c

Browse files
authored
Merge pull request #307 from ansible-lockdown/max_concurrent
Changed command to enable max -concurrency to be passed
2 parents 066bedd + 6de852e commit 0c1345c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/devel_pipeline_validation.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
- uses: actions/first-interaction@main
3535
with:
3636
repo_token: ${{ secrets.GITHUB_TOKEN }}
37+
issue_message: |-
38+
Congrats on opening your first issue and thank you for taking the time to help improve Ansible-Lockdown!
39+
Please join in the conversation happening on the [Discord Server](https://www.lockdownenterprise.com/discord) as well.
3740
pr_message: |-
3841
Congrats on opening your first pull request and thank you for taking the time to help improve Ansible-Lockdown!
3942
Please join in the conversation happening on the [Discord Server](https://www.lockdownenterprise.com/discord) as well.

tasks/post_remediation_audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Post Audit | Run post_remediation {{ benchmark }} audit # noqa name[template]
4-
ansible.builtin.shell: "umask 0022 && {{ audit_conf_dir }}/run_audit.sh -v {{ audit_vars_path }} -f {{ audit_format }} -o {{ post_audit_outfile }} -g \"{{ group_names }}\"" # noqa yaml[line-length]
4+
ansible.builtin.shell: "umask 0022 && {{ audit_conf_dir }}/run_audit.sh -v {{ audit_vars_path }} -f {{ audit_format }} -m {{ audit_max_concurrent }} -o {{ post_audit_outfile }} -g \"{{ group_names }}\"" # noqa yaml[line-length]
55
changed_when: true
66
environment:
77
AUDIT_BIN: "{{ audit_bin }}"

tasks/pre_remediation_audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
mode: 'go-rwx'
7373

7474
- name: Pre Audit | Run pre_remediation audit {{ benchmark }} # noqa name[template]
75-
ansible.builtin.shell: "umask 0022 && {{ audit_conf_dir }}/run_audit.sh -v {{ audit_vars_path }} -f {{ audit_format }} -o {{ pre_audit_outfile }} -g \"{{ group_names }}\"" # noqa yaml[line-length]
75+
ansible.builtin.shell: "umask 0022 && {{ audit_conf_dir }}/run_audit.sh -v {{ audit_vars_path }} -f {{ audit_format }} -m {{ audit_max_concurrent }} -o {{ pre_audit_outfile }} -g \"{{ group_names }}\"" # noqa yaml[line-length]
7676
changed_when: true
7777
environment:
7878
AUDIT_BIN: "{{ audit_bin }}"

0 commit comments

Comments
 (0)