diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-08-17 20:03:13 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-08-17 20:03:13 -0300 |
commit | 7123c0ad4a648c4cde242a8cbce4d78885ca71b8 (patch) | |
tree | e6c08e24f62fe84ac6c6b62d5ef62e0c46155962 | |
parent | ed014f5d01c2299041a0c1dfd470b1211f56f271 (diff) | |
download | puppet-nodo-7123c0ad4a648c4cde242a8cbce4d78885ca71b8.tar.gz puppet-nodo-7123c0ad4a648c4cde242a8cbce4d78885ca71b8.tar.bz2 |
Adds nodo::utils::math
-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, + } +} |