11
12
13
14
15
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
|
# File 'modules/profile/manifests/environment.pp', line 11
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'),
Hash[String, Stdlib::Filesource] $profile_scripts = lookup('profile::environment::profile_scripts'),
Hash[String[1], String[1]] $variables = lookup('profile::environment::variables'),
) {
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,
}
}
# /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator only present in Buster and later
$_export_systemd_env = $export_systemd_env and debian::codename::ge('buster')
file { '/etc/zsh/zshenv':
ensure => file,
owner => 'root',
group => 'root',
mode => '0444',
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',
}
# Global environment variables
unless $variables.empty {
systemd::environment { 'base-wmf-environment':
priority => 10,
variables => $variables,
}
}
}
|