mirror of https://github.com/zulip/zulip.git
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:
parent
de9ddc66eb
commit
7e65421b1f
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue