Skip to content

Commit

Permalink
Merge pull request #57 from eshamow/fix_misten_listen_variable
Browse files Browse the repository at this point in the history
Fix missing listen parameter
  • Loading branch information
igalic committed Oct 20, 2014
2 parents b63c41e + 1bfb3c9 commit 316eb7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@
# (int) This is the number of reports that we want the dashboard to display.
# Defaults to 10
#
# [*listen*]
# (string) Defaults to 'private' If set to 'public' puppetboard will listen
# on 0.0.0.0; otherwise it will only be accessible via localhost.
#
# === Examples
#
# class { 'puppetboard':
Expand Down Expand Up @@ -154,7 +158,7 @@
$manage_git = false,
$manage_virtualenv = false,
$reports_count = $::puppetboard::params::reports_count,

$listen = $::puppetboard::params::listen,
) inherits ::puppetboard::params {
validate_bool($enable_query)
validate_bool($experimental)
Expand Down
1 change: 1 addition & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@
$experimental = false
$revision = undef
$virtualenv = 'python-virtualenv'
$listen = 'private'
}

0 comments on commit 316eb7d

Please sign in to comment.