Added graphviz module

This commit is contained in:
Ossi Salmi 2010-11-09 14:41:08 +02:00 committed by Timo Mkinen
parent e22f352bc7
commit 7da561f14b

View file

@ -0,0 +1,23 @@
# Install graphviz.
#
class graphviz {
package { "graphviz":
ensure => installed,
}
}
# Install python bindings for graphviz.
#
class graphviz::python inherits graphviz {
package { "graphviz-python":
name => $operatingsystem ? {
debian => "libgv-python",
ubuntu => "libgv-python",
},
ensure => installed,
}
}