Puppet Class: location

Defined in:
manifests/init.pp

Overview

Parameters:

  • url (Any) (defaults to: "http://freegeoip.net/json/")
  • filename (Any) (defaults to: "location.json")


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
  }
}