From 6b2fcb0384331f4d0f0b54317d200c3cd5c24473 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 12 Jan 2019 16:46:37 -0500 Subject: [PATCH] Update install.yml --- roles/kalite/tasks/install.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/roles/kalite/tasks/install.yml b/roles/kalite/tasks/install.yml index ccd60bfbd..31507e645 100644 --- a/roles/kalite/tasks/install.yml +++ b/roles/kalite/tasks/install.yml @@ -50,7 +50,11 @@ # extra_args="--disable-pip-version-check" when: internet_available and not is_debuntu -- name: Remove libgeos-* pkgs, avoiding KA Lite Django failure on Ubermix #1382 +# This effectively does nothing at all on Ubuntu & Raspbian, where libgeos-* +# pkgs are not installed FWIW. But it's included to safeguard us across all +# OS's, in case others OS's like Ubermix later appear. See #1382 for details. +# Removing pkgs libgeos-3.6.2 & libgeos-c1v5 fixed the situation on Ubermix! +- name: Remove libgeos-* pkgs, avoiding KA Lite Django failure on Ubermix shell: apt -y remove "libgeos-*" - name: Default is to have cronserve started with KA Lite