diff options
Diffstat (limited to 'manifests/utils')
-rw-r--r-- | manifests/utils/math.pp | 13 |
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, + } +} |