Puppet Class: charybdis::default::operator

Defined in:
manifests/default/operator.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/default/operator.pp', line 1

class charybdis::default::operator {
  charybdis::operator { 'root':
    users    => ['*root@127.0.0.1'],
    privset  => 'admin',
    password => 'password',
    snomask  => '+Zbfkrsuy',
    flags   => [
      '~encrypted',
      'need_ssl',
    ],
    umodes  => [
      'locops',
      'servnotice',
      'operwall',
      'wallop',
    ],
  }
}