aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/astronomy.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/astronomy.pp')
-rw-r--r--manifests/utils/astronomy.pp6
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/utils/astronomy.pp b/manifests/utils/astronomy.pp
index a41ffe6..5bd6893 100644
--- a/manifests/utils/astronomy.pp
+++ b/manifests/utils/astronomy.pp
@@ -1,7 +1,9 @@
-class nodo::utils::astronomy {
+class nodo::utils::astronomy (
+ $ensure = 'installed',
+) {
package { [
'stellarium',
]:
- ensure => present,
+ ensure => $ensure,
}
}