forked from ansible-lockdown/RHEL9-CIS
16 lines
327 B
YAML
16 lines
327 B
YAML
|
|
---
|
||
|
|
|
||
|
|
- name: "1.9 | L1 | PATCH | Ensure updates, patches, and additional security software are installed"
|
||
|
|
package:
|
||
|
|
name: "*"
|
||
|
|
state: latest
|
||
|
|
when:
|
||
|
|
- rhel9cis_rule_1_9
|
||
|
|
- not system_is_ec2
|
||
|
|
tags:
|
||
|
|
- level1-server
|
||
|
|
- level1-workstation
|
||
|
|
- patch
|
||
|
|
- rule_1.9
|
||
|
|
- skip_ansible_lint
|