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

tidy up layout and titles #241

Merged
merged 1 commit into from
Aug 13, 2024
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 tasks/audit_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

- name: Audit_Only | Create local Directories for hosts
ansible.builtin.file:
mode: '0755'
path: "{{ audit_capture_files_dir }}/{{ inventory_hostname }}"
mode: '0755'
recurse: true
state: directory
when: fetch_audit_files
Expand All @@ -13,9 +13,9 @@
- name: Audit_only | Get audits from systems and put in group dir
ansible.builtin.fetch:
dest: "{{ audit_capture_files_dir }}/{{ inventory_hostname }}/"
src: "{{ pre_audit_outfile }}"
flat: true
mode: '0644'
src: "{{ pre_audit_outfile }}"
when: fetch_audit_files

- name: Audit_only | Show Audit Summary
Expand Down
4 changes: 2 additions & 2 deletions tasks/prelim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
- skip_ansible_lint
- always

- name: Include audit specific variables
- name: "PRELIM | Include audit specific variables"
ansible.builtin.include_vars: audit.yml
when:
- run_audit or audit_only
Expand All @@ -108,7 +108,7 @@
- setup_audit
- run_audit

- name: Include pre-remediation audit tasks
- name: "PRELIM | Include pre-remediation audit tasks"
ansible.builtin.import_tasks: pre_remediation_audit.yml
when:
- run_audit or audit_only
Expand Down