]> git.netwichtig.de Git - user/henk/code/puppet/modules/logcheck.git/blob - manifests/config.pp
Updates/downdates for puppet4 and adding wilhelm
[user/henk/code/puppet/modules/logcheck.git] / manifests / config.pp
1 class logcheck::config ($reportlevel) {
2   file {
3 #    '/etc/logcheck/logcheck.conf':
4 #      ensure            => present,
5 #      content           => template("logcheck/etc/logcheck/logcheck.conf.${::fqdn}"),
6 #    ;
7
8     '/etc/logcheck/ignore.d.server/':
9       ensure            => directory,
10       source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.server/',
11       recurse           => remote,
12       replace           => false,
13 #      group             => 'logcheck',
14 #      mode              => '2750',
15     ;
16
17     '/etc/logcheck/ignore.d.workstation/':
18       ensure            => directory,
19       source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/',
20       recurse           => remote,
21       replace           => false,
22 #      group             => 'logcheck',
23 #      mode              => '2750',
24     ;
25
26 #    '/etc/logcheck/ignore.d.workstation/local-wpasupplicant':
27 #      ensure            => present,
28 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/local-wpasupplicant',
29 #      group             => 'logcheck',
30 #    ;
31 #
32 #    '/etc/logcheck/ignore.d.workstation/local-dbus':
33 #      ensure            => present,
34 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/local-dbus',
35 #      group             => 'logcheck',
36 #    ;
37 #
38 #    '/etc/logcheck/ignore.d.workstation/local-kde':
39 #      ensure            => present,
40 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/local-kde',
41 #      group             => 'logcheck',
42 #    ;
43 #
44 #    '/etc/logcheck/ignore.d.workstation/local-networkmanager':
45 #      ensure            => present,
46 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/local-networkmanager',
47 #      group             => 'logcheck',
48 #    ;
49 #    '/etc/logcheck/ignore.d.workstation/local-dhcpcd':
50 #      ensure            => absent,
51 #    ;
52 #    '/etc/logcheck/ignore.d.server/local-sympa':
53 #      ensure            => present,
54 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.server/local-sympa',
55 #      group             => 'logcheck',
56 #    ;
57 #    '/etc/logcheck/ignore.d.server/local-dhcpcd':
58 #      ensure            => present,
59 #      source            => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.server/local-dhcpcd',
60 #      group             => 'logcheck',
61 #    ;
62   }
63 }
64