Skip to content

Commit

Permalink
Fix typo of MPM_PREFORK
Browse files Browse the repository at this point in the history
Was unsetting 'MPM_PERFORK', so 'MPM_PREFORK' would not have been
unset correctly.
  • Loading branch information
edmundcraske-bjss committed Sep 14, 2015
1 parent ec5c0e5 commit 49fed02
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 @@ -17,11 +17,11 @@
}
'worker': {
$set = 'MPM_WORKER'
$unset = 'MPM_PERFORK MPM_EVENT'
$unset = 'MPM_PREFORK MPM_EVENT'
}
'event': {
$set = 'MPM_EVENT'
$unset = 'MPM_PERFORK MPM_WORKER'
$unset = 'MPM_PREFORK MPM_WORKER'
}
'itk': {
$set = undef
Expand Down

0 comments on commit 49fed02

Please sign in to comment.