17 lines
420 B
YAML
17 lines
420 B
YAML
- hosts: regluit-prod
|
|
gather_facts: false
|
|
tasks:
|
|
# Need to install python3.8 and pip first so Ansible will function
|
|
- name: Install python3.8 and pip for dev
|
|
become: true
|
|
raw: bash -c "apt -qqy update && apt install -y python3.8 python3-pip python3-apt"
|
|
register: output
|
|
changed_when: output.stdout != ""
|
|
|
|
- name: Gathering Facts
|
|
setup:
|
|
|
|
- include_role:
|
|
name: regluit_prod
|
|
|
|
|