puppet/igraph/manifests/init.pp
2015-05-04 11:03:26 +03:00

14 lines
245 B
Puppet

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