From 7e65421b1fb5be85b56eb03caf1c030b460b3c4b Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Wed, 14 Jul 2021 15:28:27 -0700 Subject: [PATCH] puppet: Ensure psycopg2 is installed before running process_fts_updates. Not having the package installed will cause startup failures in `process_fts_updates`; ensure that we've installed the package before we potentially start the service. --- puppet/zulip/manifests/process_fts_updates.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/zulip/manifests/process_fts_updates.pp b/puppet/zulip/manifests/process_fts_updates.pp index 1ebb201f0e..4ad2847ca3 100644 --- a/puppet/zulip/manifests/process_fts_updates.pp +++ b/puppet/zulip/manifests/process_fts_updates.pp @@ -28,7 +28,7 @@ class zulip::process_fts_updates { file { "${zulip::common::supervisor_conf_dir}/zulip_db.conf": ensure => file, - require => Package[supervisor], + require => [Package[supervisor], Package['python3-psycopg2']], owner => 'root', group => 'root', mode => '0644',