Skip to content
This repository was archived by the owner on Aug 29, 2018. It is now read-only.

Commit 9b7bf0e

Browse files
committed
Merge pull request #112 from DanAnkers/master
Make hostnames default to using $domain instead of example.com as per the documentation
2 parents ea90d7c + b80b8cf commit 9b7bf0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

manifests/init.pp

+5-5
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,11 @@
359359
$jenkins_repo_base = undef,
360360
$optional_repo = undef,
361361
$domain = 'example.com',
362-
$broker_hostname = 'broker.example.com',
363-
$node_hostname = 'node.example.com',
364-
$named_hostname = 'ns1.example.com',
365-
$activemq_hostname = 'activemq.example.com',
366-
$datastore_hostname = 'mongodb.example.com',
362+
$broker_hostname = "broker.${domain}",
363+
$node_hostname = "node.${domain}",
364+
$named_hostname = "ns1.${domain}",
365+
$activemq_hostname = "activemq.${domain}",
366+
$datastore_hostname = "mongodb.${domain}",
367367
$named_ip_addr = $ipaddress,
368368
$bind_key = '',
369369
$bind_krb_keytab = '',

0 commit comments

Comments
 (0)