aboutsummaryrefslogtreecommitdiff
path: root/templates/puppet/proxy.pp.erb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-06-18 14:21:18 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-06-18 14:21:18 -0300
commit48f24914d39228fa68f5c540c80f285f61de1e17 (patch)
treee801695d7e760d3b2c6250ea2bcd7b4751c85d44 /templates/puppet/proxy.pp.erb
parent319bdcb9e0135f3cbac8a3d8fab29e26c6d1b8c3 (diff)
downloadpuppet-bootstrap-48f24914d39228fa68f5c540c80f285f61de1e17.tar.gz
puppet-bootstrap-48f24914d39228fa68f5c540c80f285f61de1e17.tar.bz2
Removes templates
Diffstat (limited to 'templates/puppet/proxy.pp.erb')
-rw-r--r--templates/puppet/proxy.pp.erb53
1 files changed, 0 insertions, 53 deletions
diff --git a/templates/puppet/proxy.pp.erb b/templates/puppet/proxy.pp.erb
deleted file mode 100644
index 908c2ec..0000000
--- a/templates/puppet/proxy.pp.erb
+++ /dev/null
@@ -1,53 +0,0 @@
-node '<%= hostname %>-proxy.<%= domain %>' {
- #$mail_delivery = 'tunnel'
- #$mail_hostname = 'mail'
- #$mail_ssh_port = '2202'
-
- include nodo::proxy
-
- # encrypted data remote backup
- #backup::rdiff { "other-host":
- # port => "10102",
- #}
-
- # reference to admin vserver
- host { "<%= hostname %>-master":
- ensure => present,
- ip => "192.168.0.2",
- host_aliases => [ "<%= hostname %>-master.<%= domain %>", "puppet", "admin" ],
- notify => Service["nginx"],
- }
-
- # reference to proxy vserver
- #host { "<%= hostname %>-proxy":
- # ensure => present,
- # ip => "192.168.0.3",
- # host_aliases => [ "<%= hostname %>-proxy.<%= domain %>", "<%= hostname %>-proxy" ],
- # notify => Service["nginx"],
- #}
-
- # reference to web vserver
- host { "<%= hostname %>-web":
- ensure => present,
- ip => "192.168.0.4",
- host_aliases => [ "<%= hostname %>-web.<%= domain %>", "<%= hostname %>-web", "weblocal" ],
- notify => Service["nginx"],
- }
-
- # reference to storage vserver
- host { "<%= hostname %>-storage":
- ensure => present,
- ip => "192.168.0.5",
- host_aliases => [ "<%= hostname %>-storage.<%= domain %>", "<%= hostname %>-storage" ],
- notify => Service["nginx"],
- }
-
- # reference to test vserver
- host { "<%= hostname %>-test":
- ensure => present,
- ip => "192.168.0.6",
- host_aliases => [ "<%= hostname %>-test.<%= domain %>", "<%= hostname %>-test" ],
- notify => Service["nginx"],
- }
-
-}