Update playbooks/update-yum-dima.yaml

This commit is contained in:
Sándor 2024-09-19 19:55:23 +02:00
parent b7987c5092
commit 9e355f2253

View File

@ -13,4 +13,21 @@
- mysql
- mariadb-server
- mariadb
when: ansible_os_family == "RedHat"
when: ansible_os_family == "RedHat"
- name: Wait until HTTP status is 200 of ISPmanager
uri:
url: 'https://127.0.0.1:1500/ispmgr'
return_content: no
validate_certs: no
status_code:
- 200
until: uri_output.status == 200
retries: 5 # Retries for 24 * 5 seconds = 120 seconds = 2 minutes
delay: 5 # Every 5 seconds
register: uri_output
- name: Update custom script from git
ansible.builtin.git:
repo: https://dimahu:Dima4026@git.sandros.hu/sandros/dimaserverconfigurer.git
dest: /root/dimaserverconfigurer
single_branch: yes
version: master