diff options
author | Micah Anderson <micah@riseup.net> | 2013-06-11 15:00:36 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-06-11 15:01:14 -0400 |
commit | 400dde54f3950ad01d716b664d2ed1a236b8ca42 (patch) | |
tree | b019bd130ea82f85b1ce308ecef1ae4872e0a32e /puppet/modules | |
parent | 14bd8cf734fec65d4f1e16bfe64710008bdac174 (diff) |
add a class site_config::shell for shell-related configurations
setup a /etc/profile.d configuration snippet to put /srv/leap/bin in the $PATH (#2122)
Change-Id: I0afb5232375e6c6d9f692a97243023c710265d54
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_config/manifests/default.pp | 2 | ||||
-rw-r--r-- | puppet/modules/site_config/manifests/shell.pp | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/default.pp b/puppet/modules/site_config/manifests/default.pp index 7758a69d..cfb46130 100644 --- a/puppet/modules/site_config/manifests/default.pp +++ b/puppet/modules/site_config/manifests/default.pp @@ -36,4 +36,6 @@ class site_config::default { Class['git'] -> Vcsrepo<||> + # include basic shell config + include site_config::shell } diff --git a/puppet/modules/site_config/manifests/shell.pp b/puppet/modules/site_config/manifests/shell.pp new file mode 100644 index 00000000..b1a65389 --- /dev/null +++ b/puppet/modules/site_config/manifests/shell.pp @@ -0,0 +1,10 @@ +class site_config::shell { + + file { + '/etc/profile.d/leap_path.sh': + content => 'PATH=$PATH:/srv/leap/bin', + mode => '0644', + owner => root, + group => root; + } +} |