Skip to content

Commit

Permalink
Remove the ' ' for gepetto?
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Haskel committed Feb 12, 2015
1 parent 03ff40d commit 14c8459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/package.pp
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
'apache SET options in /etc/make.conf':
ensure => $ensure,
path => '/etc/make.conf',
line => "apache24_SET_FORCE= ${SET}",
line => "apache24_SET_FORCE=${SET}",
match => '^apache24_SET_FORCE=.*',
before => Package['httpd'];
'apache UNSET options in /etc/make.conf':
ensure => $ensure,
path => '/etc/make.conf',
line => "apache24_UNSET_FORCE= ${UNSET}",
line => "apache24_UNSET_FORCE=${UNSET}",
match => '^apache24_UNSET_FORCE=.*',
before => Package['httpd'];
}
Expand Down

0 comments on commit 14c8459

Please sign in to comment.