Skip to content

Instantly share code, notes, and snippets.

@romaricpascal
Created March 15, 2013 13:09
Show Gist options
  • Save romaricpascal/5169777 to your computer and use it in GitHub Desktop.
Save romaricpascal/5169777 to your computer and use it in GitHub Desktop.
A Puppet manifest snippet to add en try in the host file
# The host resource manages entries in the host file
# http://docs.puppetlabs.com/references/latest/type.html#host
host { 'awesome-project':
ensure => 'present',
name => 'awesome-project.local',
ip => '127.0.0.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment