Skip to content

Commit

Permalink
fix my fail
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenrjohnson committed Jun 20, 2012
1 parent f19e9b3 commit 8219797
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifests/sslkeys.pp
Expand Up @@ -20,4 +20,4 @@
source => "puppet:///modules/apache2/etc/apache2/ssl/${name.ca}",
notify => Service[apache2],
}
}
}
8 changes: 4 additions & 4 deletions manifests/vhost.pp
Expand Up @@ -18,7 +18,7 @@
$aport = $port
}

file { '/etc/apache2/sites-available/$name.conf':
file { "/etc/apache2/sites-available/${name.conf}":
ensure => present,
mode => '0440',
owner => root,
Expand All @@ -34,14 +34,14 @@
$sslca = "${sslkeys}.ca"
}

file { '/etc/apache2/sites-enabled/$name.conf':
file { "/etc/apache2/sites-enabled/${name.conf}":
ensure => link,
target => '/etc/apache2/sites-available/$name.conf',
target => "/etc/apache2/sites-available/${name.conf}",
notify => Service[apache2],
}

file { $docroot:
ensure => directory,
require => Package[apache2],
}
}
}
2 changes: 1 addition & 1 deletion manifests/vproxy.pp
Expand Up @@ -40,4 +40,4 @@
target => "/etc/apache2/sites-available/${name}.conf",
notify => Service[apache2],
}
}
}

0 comments on commit 8219797

Please sign in to comment.