mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
puppet: Always install linux-image-virtual, for ksplice support.
This commit is contained in:
parent
0b1dd27841
commit
ea98549e88
@ -3,7 +3,10 @@ class zulip_ops::profile::base {
|
||||
include zulip_ops::munin_node
|
||||
include zulip_ops::ksplice_uptrack
|
||||
|
||||
$org_base_packages = [# Management for our systems
|
||||
$org_base_packages = [
|
||||
# Standard kernel, not AWS', so ksplice works
|
||||
'linux-image-virtual',
|
||||
# Management for our systems
|
||||
'openssh-server',
|
||||
'mosh',
|
||||
# package management
|
||||
@ -31,6 +34,12 @@ class zulip_ops::profile::base {
|
||||
]
|
||||
zulip::safepackage { $org_base_packages: ensure => 'installed' }
|
||||
|
||||
# Uninstall the AWS kernel, but only after we install the usual one
|
||||
package { 'linux-image-aws':
|
||||
ensure => absent,
|
||||
require => Package['linux-image-virtual'],
|
||||
}
|
||||
|
||||
# Add system users here
|
||||
$users = []
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user