Alan Orth
399585f4e7
I changed these yesterday when editing the truthy values, but acco- rding to ansible-link we can just rely on them being true or false without comparing.
20 lines
664 B
YAML
20 lines
664 B
YAML
---
|
|
|
|
- block:
|
|
- name: Install WordPress
|
|
ansible.builtin.git: repo=https://github.com/WordPress/WordPress.git dest={{ nginx_root_prefix }}/{{ item.domain_name }}/wordpress version={{ item.wordpress_version }} depth=1 force=true
|
|
when:
|
|
- item.has_wordpress is defined
|
|
- item.has_wordpress
|
|
loop: "{{ nginx_vhosts }}"
|
|
|
|
- name: Fix WordPress directory permissions
|
|
ansible.builtin.file: path={{ nginx_root_prefix }}/{{ item.domain_name }} state=directory owner=nginx group=nginx recurse=true
|
|
when:
|
|
- item.has_wordpress is defined
|
|
- item.has_wordpress
|
|
loop: "{{ nginx_vhosts }}"
|
|
tags: wordpress
|
|
|
|
# vim: set ts=2 sw=2:
|