Skip to content

Commit

Permalink
Updated params class to set the correct rack directory.
Browse files Browse the repository at this point in the history
Currently, defaults to /etc/puppet/rack, should be
/usr/share/puppet/rack/puppetmasterd.
  • Loading branch information
fatmcgav committed Mar 12, 2013
1 parent 7304901 commit 4429c73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
$group = 'puppet'
$dir = '/etc/puppet'
$vardir = '/var/lib/puppet'
$rackdir = '/usr/share/puppet/rack'
$ca = true
$passenger = true
$port = 8140
Expand Down Expand Up @@ -46,7 +47,7 @@
$post_hook_name = 'post-receive'

# Passenger config
$app_root = "${dir}/rack"
$app_root = "${rackdir}/puppetmasterd"
$ssl_dir = "${vardir}/ssl"

$master_package = $::operatingsystem ? {
Expand Down

0 comments on commit 4429c73

Please sign in to comment.