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.
This commit is contained in:
Alex Vandiver 2021-07-14 15:28:27 -07:00 committed by Alex Vandiver
parent de9ddc66eb
commit 7e65421b1f
1 changed files with 1 additions and 1 deletions

View File

@ -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',