2024-02-06 21:40:19 +01:00
|
|
|
class kandra::prod_app_frontend_once {
|
2019-06-17 00:26:24 +02:00
|
|
|
include zulip::app_frontend_once
|
2023-04-12 04:09:54 +02:00
|
|
|
include zulip::hooks::push_git_ref
|
|
|
|
include zulip::hooks::zulip_notify
|
2019-06-17 00:26:24 +02:00
|
|
|
|
|
|
|
file { '/etc/cron.d/update-first-visible-message-id':
|
|
|
|
ensure => file,
|
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
|
|
|
mode => '0644',
|
|
|
|
source => 'puppet:///modules/zulip/cron.d/calculate-first-visible-message-id',
|
|
|
|
}
|
|
|
|
|
|
|
|
file { '/etc/cron.d/invoice-plans':
|
|
|
|
ensure => file,
|
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
|
|
|
mode => '0644',
|
|
|
|
source => 'puppet:///modules/zulip/cron.d/invoice-plans',
|
|
|
|
}
|
2019-06-17 00:28:54 +02:00
|
|
|
|
2021-06-11 12:53:45 +02:00
|
|
|
file { '/etc/cron.d/downgrade-small-realms-behind-on-payments':
|
|
|
|
ensure => file,
|
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
|
|
|
mode => '0644',
|
|
|
|
source => 'puppet:///modules/zulip/cron.d/downgrade-small-realms-behind-on-payments',
|
|
|
|
}
|
|
|
|
|
2019-06-17 00:28:54 +02:00
|
|
|
file { '/etc/cron.d/check_send_receive_time':
|
|
|
|
ensure => file,
|
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
|
|
|
mode => '0644',
|
2024-02-06 21:40:19 +01:00
|
|
|
source => 'puppet:///modules/kandra/cron.d/check_send_receive_time',
|
2019-06-17 00:28:54 +02:00
|
|
|
}
|
2022-06-14 23:52:25 +02:00
|
|
|
|
|
|
|
file { '/etc/cron.d/check_user_zephyr_mirror_liveness':
|
|
|
|
ensure => file,
|
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
|
|
|
mode => '0644',
|
2024-02-06 21:40:19 +01:00
|
|
|
source => 'puppet:///modules/kandra/cron.d/check_user_zephyr_mirror_liveness',
|
2022-06-14 23:52:25 +02:00
|
|
|
}
|
2019-06-17 00:26:24 +02:00
|
|
|
}
|