Closed Sispheor closed 8 years ago
This is what I get
failed: [ktm35.gre.hpecorp.net] => {"failed": true, "path": "/etc/httpd/conf.d/phpmyadmin.conf", "state": "absent"} msg: file (/etc/httpd/conf.d/phpmyadmin.conf) is absent, cannot continue
In the playbook to get it works, I switched from file to copy
Before:
- name: Install vHost file. file: src=phpmyadmin.conf dest=/etc/httpd/conf.d/phpmyadmin.conf
After
- name: Install vHost file. copy: src=phpmyadmin.conf dest=/etc/httpd/conf.d/phpmyadmin.conf
That seems like an upstream playbook issue; this role doesn't copy any vhost configuration file into place via any of its tasks, AFAICT...
This is what I get
In the playbook to get it works, I switched from file to copy
Before:
After