puppet/igraph/manifests/init.pp
Ossi Salmi 24ecb51f6f Added support for RHEL and did some syntax cleaning
Assume that "RedHat" also works where "CentOS" does.
2012-09-05 17:29:36 +03:00

13 lines
222 B
Puppet

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