If you see the error below: 1ERROR! The field 'loop' is supposed to be a string type, however the incoming data structure is a <class 'ansible.parsing.yaml.objects.AnsibleSequence'> Upgrade your ansible to at least version 2.5. The 'loop' keyword is defined starting that version. See …
Read MoreEncountered this issue: 1The full traceback is: 2File "/tmp/ansible_f1UXSi/ansible_module_unarchive.py", line 151, in <module> 3from shlex import quote 45fatal: [206.81.5.18]: FAILED! => { 6"changed": false, 7"invocation": { 8"module_args": { 9"attributes": null, …
Read More1icasimpan@icasimpan.local:~$ curl -H "Accept-Encoding: gzip" -I -udemo:demo http://example.com 2HTTP/1.1 200 OK 3Date: Wed, 04 Oct 2017 15:25:48 GMT 4Server: Apache/2.4.18 (Ubuntu) 5X-Drupal-Cache: HIT 6Etag: "1507130489-1" 7Content-Language: en 8X-Frame-Options: SAMEORIGIN 9Link: </node/171>; …
Read MoreAdd this to Dockerfile 1RUN docker-php-ext-install mysqli See details in https://github.com/docker-library/php/issues/279
Read MoreManual 1sudo rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm In Ansible: 1- name: Add Web Static Repo 2yum: 3name: https://mirror.webtatic.com/yum/el7/webtatic-release.rpm 4state: present
Read MoreManual 1sudo yum install -y mod_php71w php71w-cli php71w-common php71w-gd php71w-mbstring php71w-mcrypt php71w-mysqlnd php71w-xml In Ansible: 1- name: Install needed php7 packages 2yum: 3name={{ item }} 4state=present 5with_items: 6- mod_php71w 7- php71w-cli 8- php71w-common 9- php71w-gd 10- php71w-mbstring 11- …
Read MoreTo be able to change versions, it's best to use pip 1pip install -I ansible==2.0.2 More details in https://askubuntu.com/questions/820892/how-to-downgrade-ansible-2-1-1-0-to-2-0-2
Read More