From ace4754e378bb801da28a6a91f959963e9bdd0b3 Mon Sep 17 00:00:00 2001 From: George Hunt Date: Tue, 22 Aug 2017 15:48:26 +0000 Subject: [PATCH 1/3] disable cups for rpi --- vars/raspbian-9.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/raspbian-9.yml b/vars/raspbian-9.yml index 9d9eca1e9..eec2d4037 100644 --- a/vars/raspbian-9.yml +++ b/vars/raspbian-9.yml @@ -19,7 +19,7 @@ mysql_service: mysql apache_log: /var/log/apache2/access.log # cups lp module not available in raspbian, causes systemd-modueles-load to fail # which in turn cause netfilter-persistent to fail, which is essential -cups_install: True +cups_install: False sshd_service: ssh php_version: 7.0 postgresql_version: 9.6 From a039020048b405eaab2fd8df25db88d39aee540c Mon Sep 17 00:00:00 2001 From: George Hunt Date: Mon, 11 Sep 2017 09:47:49 -0700 Subject: [PATCH 2/3] typo, and defaultvars fix --- roles/kiwix/tasks/kiwix_install.yml | 2 +- vars/default_vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/kiwix/tasks/kiwix_install.yml b/roles/kiwix/tasks/kiwix_install.yml index 86e8acf71..5a653631d 100644 --- a/roles/kiwix/tasks/kiwix_install.yml +++ b/roles/kiwix/tasks/kiwix_install.yml @@ -11,7 +11,7 @@ - name: Check for kiwix-serve binary stat: path={{ iiab_base }}/kiwix/bin/kiwix-serve - retister: kiwix_bin + register: kiwix_bin - name: Set kiwix first pass set_fact: diff --git a/vars/default_vars.yml b/vars/default_vars.yml index 28a8f8161..16d48fac6 100644 --- a/vars/default_vars.yml +++ b/vars/default_vars.yml @@ -269,7 +269,7 @@ awstats_install: True awstats_enabled: False -# ================= turned off services at aggregate level =========== +# =========== Less-supported XO services need additional testing=========== # 5-XO-SERVICES # ejabberd From dd80a8a03d174938634edd4ed612ac7684ad1b09 Mon Sep 17 00:00:00 2001 From: George Hunt Date: Mon, 18 Sep 2017 11:11:24 -0700 Subject: [PATCH 3/3] mongo version mixup. which conf file is used? we write to both --- roles/mongodb/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/mongodb/tasks/main.yml b/roles/mongodb/tasks/main.yml index 8e445845f..25844896a 100644 --- a/roles/mongodb/tasks/main.yml +++ b/roles/mongodb/tasks/main.yml @@ -27,7 +27,8 @@ with_items: - { src: 'mongodb.service' , dest: '/etc/systemd/system/' } - { src: 'mongodb' , dest: '/etc/sysconfig/'} - - { src: 'mongod.conf' , dest: '/etc/'} + - { src: 'mongod.conf' , dest: '/etc/mongod.conf'} + - { src: 'mongod.conf' , dest: '/etc/mongodb.conf'} - name: enable services service: name={{ item.name }}