Files
ansible-playbooks/cosmos-base.yaml
2025-09-14 13:10:34 -07:00

35 lines
527 B
YAML

---
- name: Cosmos Base Pipeline
hosts: all
become: yes
# Required Jenkins Vars
# host_ip - string
# new_hostname - string
# rename_host - bool
# config_matt - bool
# kde_full - bool
#
roles:
- role: cosmos_init
- role: docker_workstation
- role: nvidia_drivers
when: install_nvidia | bool
- role: ldap_client
when: install_LDAP | bool
- role: matt_profile
when: config_matt | bool and home_endpoint | bool
- role: kde_plasma
- role: install_apps
...