Defined Type: charybdis::auth

Defined in:
manifests/auth.pp

Overview

Parameters:

  • authclass (Any)
  • users (Any) (defaults to: [])
  • order (Any) (defaults to: '5')
  • password (Any) (defaults to: false)
  • spoof (Any) (defaults to: false)
  • flags (Any) (defaults to: [])
  • conffile (Any) (defaults to: $charybdis::conffile)


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
31
32
33
34
35
# File 'manifests/auth.pp', line 1

define charybdis::auth (
  $authclass,
  $users    = [],
  $order    = '5',
  $password = false,
  $spoof    = false,
  $flags    = [],
  $conffile = $charybdis::conffile
) {
  $authname = $name

  # Possible flags:
  #
  # encrypted                 | password is encrypted with mkpasswd
  # spoof_notice              | give a notice when spoofing hosts
  # exceed_limit (old > flag) | allow user to exceed class user limits
  # kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
  # dnsbl_exempt              | exempt this user from dnsbls
  # spambot_exempt            | exempt this user from spambot checks
  # shide_exempt              | exempt this user from serverhiding
  # jupe_exempt               | exempt this user from generating
  #                             warnings joining juped channels
  # resv_exempt               | exempt this user from resvs
  # flood_exempt              | exempt this user from flood limits
  #                                    USE WITH CAUTION.
  # no_tilde     (old - flag) | don't prefix ~ to username if no ident
  # need_ident   (old + flag) | require ident for user in this class
  # need_ssl                  | require SSL/TLS for user in this class
  # need_sasl                 | require SASL id for user in this class
  concat::fragment { "$authname auth":
    target  => $conffile,
    content => template("charybdis/auth.erb"),
    order   => "025-${order}",
  }
}