Skip to content

Instantly share code, notes, and snippets.

@rharrison10
Last active August 29, 2015 14:02
Show Gist options
  • Save rharrison10/d0cb2212edb949694634 to your computer and use it in GitHub Desktop.
Save rharrison10/d0cb2212edb949694634 to your computer and use it in GitHub Desktop.
class hosts {
host { $::fqdn:
ensure => 'present',
host_aliases => [$::hostname, 'localhost'],
ip => '127.0.0.1',
}
@@host { "${::fqdn}_example":
ensure => 'present',
name => $::fqdn,
host_aliases => [$::hostname],
ip => $::ipaddress,
tag => 'example',
}
Host <<| title != $::fqdn and tag == 'example' |>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment