Skip to content

Commit

Permalink
Merge pull request #1018 from mhaskel/gepetto
Browse files Browse the repository at this point in the history
Remove the ' ' for gepetto?
  • Loading branch information
cmurphy committed Feb 12, 2015
2 parents 03ff40d + 14c8459 commit daf88c5
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 daf88c5

Please sign in to comment.