Puppet module apache: install package mod_ssl

refs #11238
This commit is contained in:
Alexander A. Klimov 2016-02-26 12:33:10 +01:00
parent 1bbb7a3118
commit d66198e555
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@ class apache {
require => Package['apache'], require => Package['apache'],
} }
package { 'mod_ssl':
ensure => latest,
notify => Service[$apache],
}
@user { $user: @user { $user:
alias => 'apache', alias => 'apache',
} }