aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/meetbot.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/websites/manifests/meetbot.pp')
-rw-r--r--deployment/websites/manifests/meetbot.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/deployment/websites/manifests/meetbot.pp b/deployment/websites/manifests/meetbot.pp
new file mode 100644
index 00000000..04bbcf70
--- /dev/null
+++ b/deployment/websites/manifests/meetbot.pp
@@ -0,0 +1,14 @@
+# We should rather have a meetbot module used to deploy
+# it, setup backups and this website
+class websites::meetbot {
+ $vhost = "meetbot.${::domain}"
+ $vhostdir = "/home/irc_bots/meetings/"
+
+ apache::vhost::other_app { "meetbot.${::domain}":
+ vhost_file => 'websites/vhost_meetbot.conf',
+ }
+
+ file { $vhostdir:
+ ensure => directory,
+ }
+}