diff --git a/openoffice/manifests/init.pp b/openoffice/manifests/init.pp new file mode 100644 index 0000000..3e49522 --- /dev/null +++ b/openoffice/manifests/init.pp @@ -0,0 +1,13 @@ + +# Install OpenOffice +# +class openoffice { + + package { [ "openoffice.org-calc", + "openoffice.org-draw", + "openoffice.org-impress", + "openoffice.org-writer", ]: + ensure => installed, + } + +}