Removed APT repo from igraph module

This commit is contained in:
Ossi Salmi 2011-03-04 14:44:13 +02:00 committed by Timo Mkinen
parent 0194a3d4b9
commit ce38e1487f

View file

@ -1,29 +1,11 @@
# Install igraph.
#
class igraph {
case $operatingsystem {
ubuntu: {
apt::repo { "igraph.ppa.launchpad.net":
source => "http://ppa.launchpad.net/igraph/ppa/ubuntu",
key => "80C21FC1",
keyserver => "hkp://keyserver.ubuntu.com",
}
}
}
}
# Install python bindings for igraph.
#
class igraph::python inherits igraph {
class igraph::python {
case $operatingsystem {
ubuntu: {
package { "python-igraph":
ensure => installed,
require => Apt::Repo["igraph.ppa.launchpad.net"],
}
}
}