aboutsummaryrefslogtreecommitdiffstats
path: root/modules/epoll/manifests/var.pp
blob: 552c2b279fad2c08827b398cd54fad4853c68719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# == Class: epoll::var
#
# epoll configuration
#
# === Parameters
#
# [*vhost*]
#   epoll vhost
#
# [*db_hostname*]
#   hostname of the database server
#
# [*db_name*]
#   name of the database
#
# [*db_user*]
#   user to connect to the database
#
# [*db_password*]
#   password to connect to the database
#
class epoll::var (
  $vhost       = "epoll.$::domain",
  $db_hostname = 'localhost',
  $db_name     = 'epoll',
  $db_user     = 'epoll',
  $db_password
) {
}
# vim: sw=2