2026-05-06 06:36:53 +00:00
# infra-run
`infra-run` is the operational core of this repository. It groups automation, scripts, runbooks, and supporting documentation for Linux infrastructure work, incident response, and controlled change execution.
## Diagram
``` mermaid
flowchart TD
A["infra-run"] --> B["ansible"]
A --> C["docs"]
A --> D["runbooks"]
A --> E["scripts"]
E --> E1["bash"]
E --> E2["python"]
```
## Scope
2026-05-06 09:25:43 +00:00
- `ansible` - infrastructure automation with CIS-inspired hardening roles and playbooks.
2026-05-06 06:36:53 +00:00
- `docs` - supporting technical notes and written documentation.
- `runbooks` - procedural operational guides.
- `scripts` - executable tooling for operations and diagnostics.
2026-05-06 09:25:43 +00:00
## Current Automation
- RHEL 9 CIS-inspired hardening role and playbook.
- Debian 13 / Ubuntu 26.04 CIS-inspired hardening role and playbook.
- IBM AIX 7 CIS-inspired hardening role and playbook.
- Shared sanitized inventory defaults for Linux and AIX examples.
2026-05-06 06:36:53 +00:00
## Notes
- This folder reflects the structure of a production-oriented operations repository.
2026-05-06 09:25:43 +00:00
- Current implementation includes Bash operational toolkits and Ansible hardening automation.