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,
|
||||
}
|
||||
|
||||
}
|
|
@ -186,3 +186,15 @@ class yum::repo::rpmfusion-nonfree {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Add Skype repository
|
||||
#
|
||||
class yum::repo::skype {
|
||||
|
||||
yum::repo { "skype":
|
||||
descr => "Skype Yum Repository",
|
||||
baseurl => "http://download.skype.com/linux/repos/fedora/updates/i586/",
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue