aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 991a8df..c71b3b7 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -48,8 +48,12 @@ class monkeysphere {
}
}
'mail': {
+ $mail_loc = $operatingsystem ? {
+ 'centos' => '/bin/mail',
+ default => '/usr/bin/mail',
+ }
exec { "/usr/sbin/monkeysphere-host import-key /etc/ssh/ssh_host_rsa_key $key && \
- /usr/bin/mail -s 'monkeysphere host pgp key for $fqdn' root < /var/lib/monkeysphere/host_keys.pub.pgp":
+ ${mail_loc} -s 'monkeysphere host pgp key for $fqdn' root < /var/lib/monkeysphere/host_keys.pub.pgp":
unless => "/usr/local/sbin/monkeysphere-check-key",
user => "root",
require => [ Package["monkeysphere"], File["/usr/local/sbin/monkeysphere-check-key"] ],