summaryrefslogtreecommitdiff
path: root/provisioning/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'provisioning/manifests')
-rw-r--r--provisioning/manifests/debian.pp5
-rw-r--r--provisioning/manifests/source.pp8
2 files changed, 11 insertions, 2 deletions
diff --git a/provisioning/manifests/debian.pp b/provisioning/manifests/debian.pp
new file mode 100644
index 00000000..644714c0
--- /dev/null
+++ b/provisioning/manifests/debian.pp
@@ -0,0 +1,5 @@
+# This class will install the requirements to setup the
+# useragent from source
+class { '::pixelated::apt': } ->
+class { '::pixelated::common': } ->
+class { '::pixelated::source': }
diff --git a/provisioning/manifests/source.pp b/provisioning/manifests/source.pp
index 74859a63..82395ef9 100644
--- a/provisioning/manifests/source.pp
+++ b/provisioning/manifests/source.pp
@@ -1,5 +1,9 @@
+# This class will install the requirements and the useragent
+# from source. It's the default provision script called by
+# 'vagrant up'
+
class { '::pixelated::apt': } ->
class { '::pixelated::common': } ->
-class { '::pixelated::source': }
-#class { '::pixelated::cleanup':}
+class { '::pixelated::source': } ->
+class { '::pixelated::source::install_useragent':}