Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
BronsonQuick committed Jun 27, 2018
1 parent c6abb73 commit 823008e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/mailhog/manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$install_path = '/usr/local/src/mailhog',
$php = $config[php]
) {
if ( ! empty( $::config[disabled_extensions] ) and 'chassis/mailhog' in $config[disabled_extensions] ) {
if ( ! empty( $config[disabled_extensions] ) and 'chassis/mailhog' in $config[disabled_extensions] ) {
service { 'mailhog':
ensure => stopped,
enable => false,
Expand Down
2 changes: 1 addition & 1 deletion modules/mailhog/manifests/php.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$php_package = $short_ver
$php_dir = "php/${short_ver}"
}
if ( ! empty( $::config[disabled_extensions] ) and 'chassis/mailhog' in $::config[disabled_extensions] ) {
if ( ! empty( $config[disabled_extensions] ) and 'chassis/mailhog' in $config[disabled_extensions] ) {
file { "/etc/${php_dir}/fpm/conf.d/mailhog.ini":
ensure => absent,
notify => Service["php${php_package}-fpm"],
Expand Down

0 comments on commit 823008e

Please sign in to comment.