From ce38e1487f05a00128943074e4995eb8046e2135 Mon Sep 17 00:00:00 2001 From: Ossi Salmi Date: Fri, 4 Mar 2011 14:44:13 +0200 Subject: [PATCH] Removed APT repo from igraph module --- igraph/manifests/init.pp | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/igraph/manifests/init.pp b/igraph/manifests/init.pp index 37c9d06..6775382 100644 --- a/igraph/manifests/init.pp +++ b/igraph/manifests/init.pp @@ -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"], } } }