20 lines
407 B
YAML
20 lines
407 B
YAML
---
|
|
- name: Prepare VPS for PNT Data Center
|
|
hosts: localhost
|
|
become: true
|
|
vars_files:
|
|
- vars/main.yml
|
|
gather_facts: yes
|
|
|
|
pre_tasks:
|
|
- name: Not supported distros
|
|
ansible.builtin.fail:
|
|
msg: "This distribution is not supported. Playbook execution aborted."
|
|
when: ansible_os_family == "RedHat"
|
|
roles:
|
|
- generic
|
|
# - addusers
|
|
# - pntdc-servers
|
|
|
|
|