12345678910111213141516171819 |
- ---
- - name: apply nextcloud role
- collections:
- - community.general
- - ansible.posix
- hosts: all
- # vars:
- # ansible_python_interpreter: /usr/bin/python3
- # ansible_user: vagrant
- # ansible_password: vagrant
- # db_host: 192.168.56.13
- # debug_speed: false
- # pre_tasks:
- # - name: define ansible_python_interpreter group // linux distribution
- # set_fact:
- # ansible_python_interpreter: /usr/bin/python2
- # when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '7'
- roles:
- - { role: nextcloud }
|