Initial version of skype module.
This commit is contained in:
parent
f64fe99dbc
commit
b41222f26f
2 changed files with 27 additions and 0 deletions
15
skype/manifests/init.pp
Normal file
15
skype/manifests/init.pp
Normal 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,
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue