16 lines
386 B
YAML
16 lines
386 B
YAML
---
|
|
# CLI Standardization — deploy modern shell tooling to target hosts.
|
|
#
|
|
# Usage:
|
|
# ansible-playbook playbook.yml -i inventory.yml
|
|
# ansible-playbook playbook.yml -i inventory.yml --limit proxmox
|
|
# ansible-playbook playbook.yml -i inventory.yml --tags cli
|
|
|
|
- name: Deploy modern CLI environment
|
|
hosts: all
|
|
gather_facts: true
|
|
tags: [cli]
|
|
|
|
roles:
|
|
- role: cli_modern
|