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

Workflow Triggering #51

Merged
merged 1 commit into from
Feb 20, 2025
Merged
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
18 changes: 9 additions & 9 deletions tasks/ansible_hardening/main.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
---

- name: Main | Include The Preliminary Tasks
- name: "Main | Include The Preliminary Tasks"
tags:
- always
- prelim_tasks
ansible.builtin.include_tasks:
file: prelim.yml

- name: Main | Execute The Section 1 Tasks
- name: "Main | Execute The Section 1 Tasks"
tags: section01
ansible.builtin.import_tasks:
file: section01.yml
when: win16cis_section01

- name: Main | Execute The Section 2 Tasks
- name: "Main | Execute The Section 2 Tasks"
tags: section02
ansible.builtin.import_tasks:
file: section02.yml
when: win16cis_section02

- name: Main | Execute The Section 5 Tasks
- name: "Main | Execute The Section 5 Tasks"
tags: section05
ansible.builtin.import_tasks:
file: section05.yml
when: win16cis_section05

- name: Main | Execute The Section 9 Tasks
- name: "Main | Execute The Section 9 Tasks"
tags: section09
ansible.builtin.import_tasks:
file: section09.yml
when: win16cis_section09

- name: Main | Execute tThe Section 17 Tasks
- name: "Main | Execute tThe Section 17 Tasks"
tags: section17
ansible.builtin.import_tasks:
file: section17.yml
when: win16cis_section17

- name: Main | Execute The Section 18 Tasks
- name: "Main | Execute The Section 18 Tasks"
tags: section18
ansible.builtin.import_tasks:
file: section18.yml
when: win16cis_section18

- name: Main | Execute The Section 19 Tasks
- name: "Main | Execute The Section 19 Tasks"
tags: section19
ansible.builtin.import_tasks:
file: section19.yml
when: win16cis_section19

- name: Main | Run Post Tasks
- name: "Main | Run Post Tasks"
tags: always
ansible.builtin.import_tasks:
file: post.yml