Skip to content

Instantly share code, notes, and snippets.

@e30chris
Created February 18, 2013 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e30chris/4979347 to your computer and use it in GitHub Desktop.
Save e30chris/4979347 to your computer and use it in GitHub Desktop.
Puppet site.pp file for installing 'screen' on PuppetAgents.
class screen {
package { screen:
ensure => present,
}
file { "/root/.screenrc":
owner => "root",
group => "root",
mode => 0440,
source => "puppet://$puppetserver/modules/screen/root/.screenrc",
require => Package["screen"],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment