Puppet Class: role::apt_staging
- Defined in:
- modules/role/manifests/apt_staging.pp
Overview
SPDX-License-Identifier: Apache-2.0
Sets up a staging repo which will distribute packages built and uploaded by the CI pipeline
5 6 7 8 9 10 11 12 13 |
# File 'modules/role/manifests/apt_staging.pp', line 5
class role::apt_staging {
include profile::base::production
include profile::firewall
include profile::backup::host
include profile::nginx
include profile::tlsproxy::envoy
include profile::aptrepo::staging
}
|