Puppet Class: profile::pontoon::provider::cloud_vps
- Defined in:
- modules/profile/manifests/pontoon/provider/cloud_vps.pp
Summary
Cloud VPS specific tweaks to the base Pontoon setupOverview
SPDX-License-Identifier: Apache-2.0
3 4 5 6 7 8 9 |
# File 'modules/profile/manifests/pontoon/provider/cloud_vps.pp', line 3
class profile::pontoon::provider::cloud_vps () {
# In production we're explicitly purging isc-dhcp-client (8d58ccdbc8be6)
# via 'profile::base::additional_purged_packages' variable.
# To avoid fully overriding the variable, install a *different* dhcp client
# here since it is required in Cloud VPS.
ensure_packages(['dhcpcd5'])
}
|