diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-27 11:52:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-27 11:52:43 -0300 |
commit | 650799734e3f82dceb769a50977ed008175e9c51 (patch) | |
tree | 59bff470d6727cf2b54a2b896241c747c6ac5ac3 /config | |
parent | e867618cc7eb18e994569dda445be397140d7257 (diff) | |
download | puppet-bootstrap-650799734e3f82dceb769a50977ed008175e9c51.tar.gz puppet-bootstrap-650799734e3f82dceb769a50977ed008175e9c51.tar.bz2 |
Cleanup manifests
Diffstat (limited to 'config')
-rw-r--r-- | config/node/box.example.org.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/config/node/box.example.org.yaml b/config/node/box.example.org.yaml index 6197409..304d915 100644 --- a/config/node/box.example.org.yaml +++ b/config/node/box.example.org.yaml @@ -1,5 +1,17 @@ --- # +# Nodo +# +nodo::role 'vagrant' + +# +# Classes +# +classes: + - 'database' + - 'apache' + +# # MySQL # # The following password is public information and therefore @@ -12,3 +24,24 @@ mysql::server::rootpw: '9pRfteNbSFFyrHhackme' nodo::subsystem::backup::localhost : false nodo::subsystem::backup::encryptkey : 'none' nodo::subsystem::backup::password : 'hacked' + +# +# Apache +# +apache::default_folder : '/vagrant' +apache::default_user : 'vagrant' +apache::default_group : 'vagrant' + +# Manage your app +apache::sites: + 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' |