Puppet Class: hosts

Defined in:
manifests/init.pp

Summary

A short summary of the purpose of this class

Overview

hosts

A description of what this class does

Examples:

include hosts


9
10
11
12
13
14
# File 'manifests/init.pp', line 9

class hosts {
  host { $::fqdn:
    ip           => $::ipaddress,
    host_aliases => [ $::hostname ],
  }
}