From 42acd6687191af5af0db6c090d2eaa5b33e2adc4 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 30 Oct 2018 21:22:21 -0400 Subject: [PATCH] Update php-stem.yml --- roles/httpd/tasks/php-stem.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/roles/httpd/tasks/php-stem.yml b/roles/httpd/tasks/php-stem.yml index a31c4e064..1869d5981 100644 --- a/roles/httpd/tasks/php-stem.yml +++ b/roles/httpd/tasks/php-stem.yml @@ -11,7 +11,7 @@ # command: cd /; wget http://download.iiab.io/packages/php-stem.x64.tar # when: not is_rpi -- name: Download & unpack php-stem.rpi.tar to / (rpi) +- name: Unarchive http://download.iiab.io/packages/php-stem.rpi.tar to / (rpi) unarchive: src: http://download.iiab.io/packages/php-stem.rpi.tar dest: / @@ -21,7 +21,7 @@ remote_src: yes when: is_rpi -- name: Download & unpack php-stem.x86.tar to / (debian-9 on x86_64 only) +- name: Unarchive http://download.iiab.io/packages/php-stem.x64.tar to / (debian-9 on x86_64 only) unarchive: src: http://download.iiab.io/packages/php-stem.x64.tar dest: / @@ -33,9 +33,3 @@ # Presumably fails on Debian 8 & 10? # Fails on Debian i686 as of 2018-08-07: https://github.com/iiab/iiab/issues/983 # Fails on Ubuntu 18.04 as of 2018-07-28: https://github.com/iiab/iiab/issues/829 - -# No need to do this twice? Happens later @ https://github.com/iiab/iiab/blob/master/roles/3-base-server/tasks/main.yml#L24-L28 -#- name: Restart apache2 / httpd -# service: -# name: "{{ apache_service }}" -# state: restarted