Puppet Class: location
- Defined in:
- manifests/init.pp
Overview
1 2 3 4 5 6 7 8 |
# File 'manifests/init.pp', line 1
class location ( $url = "http://freegeoip.net/json/",
$filename = "location.json" ) {
fetchfact::fetch { '$filename':
url => $url,
factfile => $filename
}
}
|