From: mh Date: Fri, 5 Sep 2008 14:38:44 +0000 (+0000) Subject: added libssh2 stuff X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=cecae58767fc235df2b4107089604ed3419536b9;p=puppet-sshd.git added libssh2 stuff git-svn-id: https://svn/ipuppet/trunk/modules/sshd@2212 d66ca3ae-40d7-4aa7-90d4-87d79ca94279 --- diff --git a/manifests/libssh2.pp b/manifests/libssh2.pp new file mode 100644 index 0000000..5b4e363 --- /dev/null +++ b/manifests/libssh2.pp @@ -0,0 +1,7 @@ +# manifests/libssh2.pp + +class sshd::libssh2 { + package{'libssh2': + ensure => present, + } +} diff --git a/manifests/libssh2/devel.pp b/manifests/libssh2/devel.pp new file mode 100644 index 0000000..e33f6c7 --- /dev/null +++ b/manifests/libssh2/devel.pp @@ -0,0 +1,7 @@ +# manifests/libssh2/devel.pp + +class sshd::libssh2::devel inherits sshd::libssh2 { + package{'libssh2-devel': + ensure => installed, + } +}