Puppet Class: profile::environment
- Defined in:
- modules/profile/manifests/environment.pp
Summary
Sets up the base environment for all hosts (profile, editor, sysctl, etc)Overview
SPDX-License-Identifier: Apache-2.0
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'modules/profile/manifests/environment.pp', line 16
class profile::environment (
Boolean $ls_aliases = lookup('profile::environment::ls_aliases'),
Boolean $export_systemd_env = lookup('profile::environment::export_systemd_env'),
Enum['vim', 'use_default'] $editor = lookup('profile::environment::editor'),
Optional[String[1]] $custom_skel_bashrc = lookup('profile::environment::custom_skel_bashrc'),
Optional[String[1]] $custom_skel_zshrc = lookup('profile::environment::custom_skel_zshrc'),
Optional[String[1]] $custom_bashrc = lookup('profile::environment::custom_bashrc'),
Array[Stdlib::Fqdn] $wikimedia_domains = lookup('profile::environment::wikimedia_domains'),
Array[Stdlib::Host] $no_proxy_domains = lookup('profile::environment::no_proxy_domains'),
Array[Stdlib::Host] $skip_domains = lookup('profile::environment::skip_domains'),
Hash[String, Stdlib::Filesource] $profile_scripts = lookup('profile::environment::profile_scripts'),
Hash[String[1], String[1]] $variables = lookup('profile::environment::variables'),
) {
ensure_packages(['vim', 'zsh'])
# See the following for some semantics on no_proxy
# https://about.gitlab.com/blog/2021/01/27/we-need-to-talk-no-proxy
$_no_proxy_domains = $wikimedia_domains + $no_proxy_domains - $skip_domains
$_variables = $_no_proxy_domains.empty ? {
true => $variables,
default => $variables + {
'no_proxy' => $_no_proxy_domains.join(','),
'NO_PROXY' => $_no_proxy_domains.join(',')
},
}
if $ls_aliases {
exec { 'uncomment root bash aliases':
path => '/bin:/usr/bin',
command => "sed -i '
/^#alias ll=/ s/^#//
/^#alias la=/ s/^#//
' /root/.bashrc",
onlyif => "grep -q '^#alias ll' /root/.bashrc",
}
}
if $custom_bashrc {
file { '/etc/bash.bashrc':
content => template($custom_bashrc),
owner => 'root',
group => 'root',
mode => '0644',
}
}
if $custom_skel_bashrc {
file { '/etc/skel/.bashrc':
content => template($custom_skel_bashrc),
owner => 'root',
group => 'root',
mode => '0644',
}
}
if $custom_skel_bashrc {
file { '/etc/skel/.zshrc':
content => template($custom_skel_zshrc),
owner => 'root',
group => 'root',
mode => '0644',
}
}
if $editor != 'use_default' {
file { '/etc/alternatives/editor':
ensure => link,
target => "/usr/bin/${editor}",
}
}
$profile_scripts.each |$script, $source| {
file {
"/etc/profile.d/${script}":
ensure => file,
owner => 'root',
group => 'root',
mode => '0444',
source => $source,
}
}
file { '/etc/zsh/zshenv':
ensure => file,
owner => 'root',
group => 'root',
mode => '0444',
require => Package['zsh'],
content => template('profile/environment/zshenv.erb'),
}
file { '/etc/profile.d/systemd-environment.sh':
ensure => stdlib::ensure($export_systemd_env, 'file'),
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/profile/environment/systemd-environment.sh',
}
### Settings commons to all realms
$wikimedia_cluster = $::realm ? {
'labs' => "labs\n",
default => "${::site}\n",
}
file { '/etc/wikimedia-cluster':
owner => 'root',
group => 'root',
mode => '0444',
content => $wikimedia_cluster,
}
# script to generate ssh fingerprints of the server
file { '/usr/local/bin/gen_fingerprints':
source => 'puppet:///modules/base/environment/gen_fingerprints',
owner => 'root',
group => 'root',
mode => '0555',
}
# Global vim defaults
file { '/etc/vim/vimrc.local':
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/base/environment/vimrc.local',
require => Package['vim'],
}
# Global environment variables
unless $_variables.empty {
systemd::environment { 'base-wmf-environment':
priority => 10,
variables => $_variables,
}
}
}
|