summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/shell.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-06-28 12:11:32 -0400
committerMicah Anderson <micah@riseup.net>2013-06-30 12:38:03 -0400
commit3b6f11a60778d5cb3ae265980e4e4870bf065de2 (patch)
tree669aca1a87364d8381304224d1497c6c963ab77e /puppet/modules/site_config/manifests/shell.pp
parente6bd481933bd4104fb7839703c88de971559d3db (diff)
modularize and standardize site_sshd:
. move the setting of the xterm title to site_config::shell . change the xterm file resource to use standard source lines, switch to single quotes, quote mode, and line up parameters . move the mosh pieces into a site_ssh::mosh class and only include it if the right mosh variable is enabled, passing into the class the necessary hiera parameters . lint the site_ssh::mosh resources . change the authorized_keys class to accept the key parameter which is passed in from the main ssh class (but allow for out of scope variable lookup when the tag is passed) Change-Id: Ieec5a3932de9bad1b98633032b28f88e91e46604
Diffstat (limited to 'puppet/modules/site_config/manifests/shell.pp')
-rw-r--r--puppet/modules/site_config/manifests/shell.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/shell.pp b/puppet/modules/site_config/manifests/shell.pp
index b1a65389..5b8c025d 100644
--- a/puppet/modules/site_config/manifests/shell.pp
+++ b/puppet/modules/site_config/manifests/shell.pp
@@ -7,4 +7,16 @@ class site_config::shell {
owner => root,
group => root;
}
+
+ ##
+ ## XTERM TITLE
+ ##
+
+ file { '/etc/profile.d/xterm-title.sh':
+ source => 'puppet:///modules/site_config/xterm-title.sh',
+ owner => root,
+ group => 0,
+ mode => '0644';
+ }
+
}