aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-08-19 22:18:28 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-08-19 22:18:28 -0300
commit6759fe7f6f778fa4b19f7df3d19d63c8737e2ca5 (patch)
treec56984a988c788a5c3d5cee9d72b88967dcd46b2 /manifests
parenta461d98f5cfbda61937620cdf0829758a6bcca40 (diff)
downloadpuppet-bootstrap-6759fe7f6f778fa4b19f7df3d19d63c8737e2ca5.tar.gz
puppet-bootstrap-6759fe7f6f778fa4b19f7df3d19d63c8737e2ca5.tar.bz2
Another LAMP example
Diffstat (limited to 'manifests')
-rw-r--r--manifests/bootstrap/vagrant.pp17
1 files changed, 16 insertions, 1 deletions
diff --git a/manifests/bootstrap/vagrant.pp b/manifests/bootstrap/vagrant.pp
index d24ed90..47305dc 100644
--- a/manifests/bootstrap/vagrant.pp
+++ b/manifests/bootstrap/vagrant.pp
@@ -12,12 +12,27 @@ class { 'nodo':
role => 'vagrant',
}
-# LAMP
+#
+# LAMP example
+#
#include database
#
#class { 'apache':
# default_folder => '/vagrant',
# default_user => 'vagrant',
# default_group => 'vagrant',
+#}
#
+# If you want to manage another website
+#apache::site { "myapp":
+# docroot => "/vagrant/",
+# server_alias => 'myapp vagrant localhost',
+# use => [ "Site myapp" ],
+# tag => 'all',
+# owner => vagrant,
+# group => vagrant,
+# mpm_user => vagrant,
+# mpm_group => vagrant,
+# password => '$5$NZfZqcdyZ3Xt$.kfZejriEJP3fc6RU0gBGEzMPQ/c3XiowVImB6VDrtD',
+# shell => '/bin/bash',
#}