From 3f2aad8d17bde2354ad6d222d85d7281c40391b5 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 14 Apr 2013 15:12:28 -0300 Subject: Splitting nodo code into subsystems --- manifests/subsystem/apt.pp | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 manifests/subsystem/apt.pp (limited to 'manifests/subsystem/apt.pp') diff --git a/manifests/subsystem/apt.pp b/manifests/subsystem/apt.pp new file mode 100644 index 0000000..b3f643d --- /dev/null +++ b/manifests/subsystem/apt.pp @@ -0,0 +1,48 @@ +class nodo::subsystem::apt { + # + # Apt configuration + # + class { 'apt': + include_src => hiera('nodo::subsystem::apt::include_src', false), + use_next_release => hiera('nodo::subsystem::apt::use_next_release', false), + custom_key_dir => hiera('nodo::subsystem::apt::custom_key_dir', 'puppet:///modules/site_apt/keys.d') + } + + include apt::unattended_upgrades + + $apt_domain_source = hiera('nodo::subsystem::apt::domain_source', false) + + apt::sources_list { "${::domain}.list": + source => [ "puppet:///modules/site_apt/sources.list.d/${::operatingsystem}/${::lsbdistcodename}/${::domain}.list", + "puppet:///modules/site_apt/sources.list.d/${::operatingsystem}/${::domain}.list", ], + ensure => $apt_domain_source ? { + true => present, + default => absent, + } + } + + # Preferences file can't have dots in the filename + $apt_domain_preferences = regsubst($::domain, '\.', '-', 'G') + + file { "/etc/apt/preferences.d/${apt_domain_preferences}": + source => [ "puppet:///modules/site_apt/preferences.d/${::operatingsystem}/${::domain}", + "puppet:///modules/nodo/preferences.d/custom" ], + ensure => $apt_domain_source ? { + true => present, + default => absent, + } + } + + $apt_proxy = hiera('nodo::subsystem::apt::proxy', false) + + if $apt_proxy != false { + class { 'apt::proxy_client': + proxy => $apt_proxy, + port => hiera('nodo::subsystem::apt::proxy_port', ''), + } + } + + package { 'apt-transport-https': + ensure => present, + } +} -- cgit v1.2.3