puppet/igraph/manifests/init.pp
2011-03-04 14:47:51 +02:00

13 lines
220 B
Puppet

# Install python bindings for igraph.
#
class igraph::python {
case $operatingsystem {
ubuntu: {
package { "python-igraph":
ensure => installed,
}
}
}
}