ansible-role-php/tasks/main.yml
2023-02-08 11:21:31 +01:00

21 lines
428 B
YAML

---
- name: Package tasks
ansible.builtin.import_tasks: packages.yml
tags: packages
- name: "Get PHP version"
ansible.builtin.shell:
cmd: php -v | grep -Po '(?<=PHP )([0-9.]{3})'
register: php_version
changed_when: false
check_mode: false
tags: php_version
- name: PHP tasks
ansible.builtin.import_tasks: php.yml
tags: php
- name: User tasks
ansible.builtin.import_tasks: user.yml
tags: never, user