2016-10-17 04:05:49 +02:00
|
|
|
class zulip_ops::zmirror_personals {
|
|
|
|
include zulip_ops::base
|
2018-12-06 02:56:46 +01:00
|
|
|
include zulip_ops::apt_repository_debathena
|
2013-11-01 20:28:03 +01:00
|
|
|
include zulip::supervisor
|
2013-08-23 23:38:39 +02:00
|
|
|
|
2013-11-08 21:16:02 +01:00
|
|
|
$zmirror_packages = [# Packages needed to run the mirror
|
2018-08-13 21:29:40 +02:00
|
|
|
'libzephyr4-krb5',
|
|
|
|
'zephyr-clients',
|
|
|
|
'krb5-config',
|
|
|
|
'krb5-user',
|
|
|
|
'debathena-kerberos-config',
|
|
|
|
'debathena-zephyr-config',
|
2018-08-13 21:27:41 +02:00
|
|
|
# Packages needed to build pyzephyr
|
2018-08-13 21:29:40 +02:00
|
|
|
'libzephyr-dev',
|
|
|
|
'comerr-dev',
|
|
|
|
'python3-dev',
|
|
|
|
'python-dev',
|
|
|
|
'cython3',
|
|
|
|
'cython',
|
2018-08-13 21:27:41 +02:00
|
|
|
]
|
2018-12-06 02:56:46 +01:00
|
|
|
package { $zmirror_packages:
|
|
|
|
ensure => 'installed',
|
|
|
|
require => Exec['setup_apt_repo_debathena'],
|
2013-08-23 23:38:39 +02:00
|
|
|
}
|
2018-12-06 02:56:46 +01:00
|
|
|
|
2013-10-04 19:19:57 +02:00
|
|
|
file { ['/home/zulip/api-keys', '/home/zulip/zephyr_sessions', '/home/zulip/ccache',
|
|
|
|
'/home/zulip/mirror_status']:
|
2018-08-13 21:20:34 +02:00
|
|
|
ensure => directory,
|
|
|
|
mode => '0644',
|
2018-08-13 21:29:40 +02:00
|
|
|
owner => 'zulip',
|
|
|
|
group => 'zulip',
|
2013-08-23 23:38:39 +02:00
|
|
|
}
|
|
|
|
|
2018-08-13 21:29:40 +02:00
|
|
|
file { '/etc/cron.d/test_zephyr_personal_mirrors':
|
2013-08-26 21:43:29 +02:00
|
|
|
ensure => file,
|
2018-08-13 21:29:40 +02:00
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
2018-08-13 21:20:34 +02:00
|
|
|
mode => '0644',
|
2018-08-13 21:29:40 +02:00
|
|
|
source => 'puppet:///modules/zulip_ops/cron.d/test_zephyr_personal_mirrors',
|
2013-08-26 21:43:29 +02:00
|
|
|
}
|
|
|
|
|
2018-08-13 21:29:40 +02:00
|
|
|
file { '/usr/lib/nagios/plugins/zulip_zephyr_mirror':
|
2016-04-04 04:23:57 +02:00
|
|
|
require => Package[nagios-plugins-basic],
|
|
|
|
recurse => true,
|
2018-08-13 21:20:34 +02:00
|
|
|
purge => true,
|
2018-08-13 21:29:40 +02:00
|
|
|
owner => 'root',
|
|
|
|
group => 'root',
|
2018-08-13 21:20:34 +02:00
|
|
|
mode => '0755',
|
2018-08-13 21:29:40 +02:00
|
|
|
source => 'puppet:///modules/zulip_ops/nagios_plugins/zulip_zephyr_mirror',
|
2016-04-04 04:23:57 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:38:39 +02:00
|
|
|
# TODO: Do the rest of our setup, which includes at least:
|
|
|
|
# Building patched libzephyr4-krb5 from davidben's roost branch and installing that
|
|
|
|
# (to add ZLoadSession/ZDumpSession).
|
|
|
|
# Building python-zephyr after cloning it from https://github.com/ebroder/python-zephyr
|
|
|
|
# (patched with tabbott's branch to add dump_session and load_session using the above)
|
|
|
|
}
|