From: Silvio Rhatto Date: Thu, 17 Aug 2017 23:03:13 +0000 (-0300) Subject: Adds nodo::utils::math X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=7123c0ad4a648c4cde242a8cbce4d78885ca71b8;p=puppet-nodo.git Adds nodo::utils::math --- 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, + } +}