mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
7 lines
277 B
YAML
Executable File
7 lines
277 B
YAML
Executable File
---
|
|
- debug:
|
|
msg: "{{ item }}"
|
|
- name: Changing entry in nginx database
|
|
ansible.builtin.shell: sqlite3 /share/docker_data/nginx/data/database.sqlite "UPDATE proxy_host SET forward_host = '{{ destination_server}}' WHERE domain_names = '[\"{{ item }}\"]'"
|
|
become: true
|