Skip to content

Commit

Permalink
Merge pull request #51 from ansible-lockdown/workflow
Browse files Browse the repository at this point in the history
Workflow Triggering
  • Loading branch information
MrSteve81 authored Feb 20, 2025
2 parents 24e96a2 + e868db2 commit 4ee5be3
Showing 1 changed file with 9 additions and 9 deletions.
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

0 comments on commit 4ee5be3

Please sign in to comment.