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