Skip to content

Commit

Permalink
fix template paths in puppet manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
deizel committed Apr 19, 2012
1 parent 41b865c commit 7459c15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions puppet/manifests/joindin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

apache::vhost{ 'dev.joind.in':
docroot => '/vagrant/src',
template => '/vagrant/templates/virtualhost/vhost.conf.erb',
template => '/vagrant/puppet/templates/virtualhost/vhost.conf.erb',
}

class something::db {
Expand All @@ -41,9 +41,9 @@

file { 'database-config':
path => '/vagrant/src/system/application/config/database.php',
source => '/vagrant/templates/database.php.erb',
source => '/vagrant/puppet/templates/database.php.erb',
}
file { 'application-config':
path => '/vagrant/src/system/application/config/config.php',
source => '/vagrant/templates/config.php.erb',
source => '/vagrant/puppet/templates/config.php.erb',
}

0 comments on commit 7459c15

Please sign in to comment.