diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-09-29 11:48:51 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-09-29 11:48:51 -0300 |
commit | f73d99c47e543bef362dd5111c812e8c79a4c993 (patch) | |
tree | 5a5d7e4ec01e7c9bf7a658c435b0a4f516e2f47c /manifests | |
parent | aea1eb6133bf661b3646b3e204e3aef8bf21b06e (diff) | |
download | puppet-nodo-f73d99c47e543bef362dd5111c812e8c79a4c993.tar.gz puppet-nodo-f73d99c47e543bef362dd5111c812e8c79a4c993.tar.bz2 |
Adds nodo::utils::doc
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/bundle/poweruser.pp | 1 | ||||
-rw-r--r-- | manifests/utils/doc.pp | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/manifests/utils/bundle/poweruser.pp b/manifests/utils/bundle/poweruser.pp index 51021c2..d7b4b7a 100644 --- a/manifests/utils/bundle/poweruser.pp +++ b/manifests/utils/bundle/poweruser.pp @@ -1,5 +1,6 @@ # Bundle for power users class nodo::utils::bundle::poweruser { + include nodo::utils::doc include nodo::utils::office::console include nodo::utils::office::gui include nodo::utils::interface diff --git a/manifests/utils/doc.pp b/manifests/utils/doc.pp new file mode 100644 index 0000000..0787c3d --- /dev/null +++ b/manifests/utils/doc.pp @@ -0,0 +1,7 @@ +class nodo::utils::doc { + package { [ + 'anarchism', + ]: + ensure => installed, + } +} |