blob: 04bbcf70b8bedae46f873ddf153dc8a61e09135c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
}
}
|