Initial version of skype module.

This commit is contained in:
Timo Mkinen 2011-05-18 09:02:03 +03:00
parent f64fe99dbc
commit b41222f26f
2 changed files with 27 additions and 0 deletions

15
skype/manifests/init.pp Normal file
View file

@ -0,0 +1,15 @@
# Install Skype
#
class skype {
case $operatingsystem {
"fedora": { include yum::repo::skype }
default: { fail("Skype module not supported in ${operatingsystem}") }
}
package { "skype":
ensure => installed,
}
}