(#13860) Autorequire Package['httpd']

Previous to this commit, the `a2mod type did not autorequire the
Package['httpd'] resource provided by the `apache` class. If the
Package['httpd'] resource was enforced after any a2mod resources, the
a2mod resources would fail since the httpd package installs the
a2emod/a2dismod system commands.
This commit is contained in:
Carl Caum 2012-04-10 11:30:39 -05:00
parent 7d168bceaf
commit 98d774eaa8
1 changed files with 6 additions and 2 deletions

View File

@ -9,4 +9,8 @@ Puppet::Type.newtype(:a2mod) do
isnamevar
end
autorequire(:package) { catalog.resource(:package, 'httpd')}
end
end