]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Adds nodo::utils::math
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 17 Aug 2017 23:03:13 +0000 (20:03 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 17 Aug 2017 23:03:13 +0000 (20:03 -0300)
manifests/utils/math.pp [new file with mode: 0644]

diff --git a/manifests/utils/math.pp b/manifests/utils/math.pp
new file mode 100644 (file)
index 0000000..a380660
--- /dev/null
@@ -0,0 +1,13 @@
+class nodo::utils::math (
+  $ensure = 'installed',
+) {
+  package { [
+    'octave',
+    'r-base',
+    'r-mathlib',
+    'gnuplot',
+    'sagemath',
+  ]:
+    ensure => $ensure,
+  }
+}