From d5c7d4ae99f2cea7019ffe119347751c60d8964c Mon Sep 17 00:00:00 2001 From: A Holt Date: Fri, 24 May 2019 23:52:11 -0400 Subject: [PATCH] php{{ php_version }}-sqlite if raspbian-8 or debian-8 --- roles/httpd/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/httpd/tasks/main.yml b/roles/httpd/tasks/main.yml index c998a7467..88d683603 100644 --- a/roles/httpd/tasks/main.yml +++ b/roles/httpd/tasks/main.yml @@ -26,7 +26,8 @@ - name: Install php{{ php_version }}-sqlite (raspbian-8 or debian-8) package: name: "php{{ php_version }}-sqlite" - when: is_debian and ansible_distribution_major_version == "8" + when: is_raspbian_8 or is_debian_8 + #when: is_debian and ansible_distribution_major_version == "8" # SQLite3 no longer included in another package - name: Install php{{ php_version }}-sqlite3 (raspbian-9+ or debian-9+ or ubuntu-18+)