aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-08-17 20:03:13 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-08-17 20:03:13 -0300
commit7123c0ad4a648c4cde242a8cbce4d78885ca71b8 (patch)
treee6c08e24f62fe84ac6c6b62d5ef62e0c46155962
parented014f5d01c2299041a0c1dfd470b1211f56f271 (diff)
downloadpuppet-nodo-7123c0ad4a648c4cde242a8cbce4d78885ca71b8.tar.gz
puppet-nodo-7123c0ad4a648c4cde242a8cbce4d78885ca71b8.tar.bz2
Adds nodo::utils::math
-rw-r--r--manifests/utils/math.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils/math.pp b/manifests/utils/math.pp
new file mode 100644
index 0000000..a380660
--- /dev/null
+++ b/manifests/utils/math.pp
@@ -0,0 +1,13 @@
+class nodo::utils::math (
+ $ensure = 'installed',
+) {
+ package { [
+ 'octave',
+ 'r-base',
+ 'r-mathlib',
+ 'gnuplot',
+ 'sagemath',
+ ]:
+ ensure => $ensure,
+ }
+}