diff options
-rw-r--r-- | modules/blog/manifests/init.pp | 3 | ||||
-rw-r--r-- | modules/postfix/manifests/init.pp | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/modules/blog/manifests/init.pp b/modules/blog/manifests/init.pp index b76e759d..8fffaff9 100644 --- a/modules/blog/manifests/init.pp +++ b/modules/blog/manifests/init.pp @@ -4,9 +4,6 @@ class blog { package { 'wget': ensure => installed } - package { 'nail': - ensure => installed - } file { "check_new-blog-post": path => "/usr/local/bin/check_new-blog-post.sh", ensure => present, diff --git a/modules/postfix/manifests/init.pp b/modules/postfix/manifests/init.pp index 9f95278f..998d4261 100644 --- a/modules/postfix/manifests/init.pp +++ b/modules/postfix/manifests/init.pp @@ -4,7 +4,9 @@ class postfix { package { postfix: ensure => installed } - + package { 'mailx': + ensure => installed + } service { postfix: ensure => running, subscribe => [ Package['postfix']], |