LEFT | RIGHT |
1 class filtermaster { | 1 class filtermaster { |
2 Cron { | 2 Cron { |
3 #TODO: Change The MAILTO to the correct paramater befor commiting | 3 #TODO change email |
4 environment => ['MAILTO=ROOT', 'PYTHONPATH=/opt/sitescripts'], | 4 environment => ['MAILTO=root', 'PYTHONPATH=/opt/sitescripts'], |
5 } | 5 } |
6 | 6 |
7 class {'ssh': | 7 class {'ssh': |
8 custom_configuration => 'Match User rsync | 8 custom_configuration => 'Match User rsync |
9 AllowTcpForwarding no | 9 AllowTcpForwarding no |
10 X11Forwarding no | 10 X11Forwarding no |
11 AllowAgentForwarding no | 11 AllowAgentForwarding no |
12 GatewayPorts no | 12 GatewayPorts no |
13 ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/rsync
/generated/data/' | 13 ForceCommand rsync --server --sender -vltprz --delete-excluded . /home/rsync
/generated/data/' |
14 } | 14 } |
15 | 15 |
16 user {'rsync': | 16 user {'rsync': |
17 ensure => present, | 17 ensure => present, |
18 comment => 'Filter list mirror user', | 18 comment => 'Filter list mirror user', |
19 home => '/home/rsync', | 19 home => '/home/rsync', |
20 managehome => true | 20 managehome => true |
21 } | 21 } |
22 | 22 |
23 file {'/home/rsync/update_repos.sh': | 23 file {'/home/rsync/update_repos.sh': |
24 ensure => file, | 24 ensure => file, |
25 owner => rsync, | 25 owner => rsync, |
26 mode => 0700, | 26 mode => 0700, |
27 source => 'puppet:///modules/filtermaster/update_repos.sh' | 27 source => 'puppet:///modules/filtermaster/update_repos.sh' |
28 } | 28 } |
29 | 29 |
30 file {'/home/rsync/.ssh': | |
31 ensure => directory, | |
32 owner => rsync, | |
33 mode => 0600 | |
34 } | |
35 | |
36 file {'/home/rsync/subscription': | 30 file {'/home/rsync/subscription': |
37 ensure => directory, | 31 ensure => directory, |
38 owner => rsync | 32 owner => rsync |
39 } | 33 } |
40 | 34 |
41 file {'/home/rsync/generated': | 35 file {'/home/rsync/generated': |
42 ensure => directory, | 36 ensure => directory, |
43 owner => rsync | 37 owner => rsync |
44 } | 38 } |
45 | 39 |
| 40 file {'/home/rsync/.ssh': |
| 41 ensure => directory, |
| 42 owner => rsync, |
| 43 mode => 0600 |
| 44 } |
| 45 |
46 file {'/home/rsync/.ssh/authorized_keys': | 46 file {'/home/rsync/.ssh/authorized_keys': |
47 ensure => file, | 47 ensure => file, |
48 owner => rsync, | 48 owner => rsync, |
49 mode => 0600, | 49 mode => 0600, |
50 source => 'puppet:///modules/filtermaster/authorized_keys' | 50 source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.or
g.pub' |
| 51 } |
| 52 |
| 53 file {'/etc/ssh/ssh_host_rsa_key': |
| 54 require => Package['openssh-server'], |
| 55 notify => Service['ssh'], |
| 56 ensure => file, |
| 57 owner => root, |
| 58 group => root, |
| 59 source => 'puppet:///modules/private/filtermaster.adblockplus.org_ssh.key' |
| 60 } |
| 61 |
| 62 file {'/etc/ssh/ssh_host_rsa_key.pub': |
| 63 require => Package['openssh-server'], |
| 64 notify => Service['ssh'], |
| 65 ensure => file, |
| 66 owner => root, |
| 67 group => root, |
| 68 source => 'puppet:///modules/private/filtermaster.adblockplus.org_ssh.pub' |
51 } | 69 } |
52 | 70 |
53 package {['p7zip-full']:} | 71 package {['p7zip-full']:} |
54 | 72 |
55 define repo_download( ) { | 73 define repo_download() { |
56 exec { "fetch_${title}": | 74 exec {"fetch_${title}": |
57 command => "hg clone https://hg.adblockplus.org/${title} /home/rsync/subs
cription/${title}", | 75 command => "hg clone https://hg.adblockplus.org/${title} /home/rsync/subsc
ription/${title}", |
58 path => ["/usr/bin/", "/bin/"], | 76 path => ["/usr/bin/", "/bin/"], |
59 require => Package['mercurial'], | 77 require => Package['mercurial'], |
60 user => rsync, | 78 user => rsync, |
61 timeout => 0, | 79 timeout => 0, |
62 onlyif => "test ! -d /home/rsync/subscription/${title}" | 80 onlyif => "test ! -d /home/rsync/subscription/${title}" |
63 } | 81 } |
64 } | 82 } |
65 | 83 |
66 repo_download {['easylist', | 84 repo_download {['easylist', |
67 'easylistgermany', | 85 'easylistgermany', |
68 'easylistitaly', | 86 'easylistitaly', |
69 'easylistcombinations', | 87 'easylistcombinations', |
70 'malwaredomains', | 88 'malwaredomains', |
71 'ruadlist', | 89 'ruadlist', |
72 'listefr', | 90 'listefr', |
73 'exceptionrules', | 91 'exceptionrules', |
74 'easylistdutch', | 92 'easylistdutch', |
75 'facebookfilters', | 93 'facebookfilters', |
76 'antiadblockfilters' | 94 'antiadblockfilters' |
77 ]: | 95 ]: |
78 } | 96 } |
79 | 97 |
80 cron {'update_subscription': | 98 cron {'update_subscription': |
81 ensure => present, | 99 ensure => present, |
82 command => "python -m sitescripts.subscriptions.bin.updateSubscriptionDownlo
ads 3>&1 1>/dev/null 2>&3 | perl -pe 's/^/\"[\" . scalar localtime() . \"] \"/e'
>> /tmp/subscription_errors && chmod 666 /tmp/subscription_errors 2>/dev/null", | 100 command => "python -m sitescripts.subscriptions.bin.updateSubscriptionDownlo
ads 3>&1 1>/dev/null 2>&3 | perl -pe 's/^/\"[\" . scalar localtime() . \"] \"/e'
>> /tmp/subscription_errors && chmod 666 /tmp/subscription_errors 2>/dev/null", |
83 user => rsync, | 101 user => rsync, |
84 require => [ | 102 require => User['rsync'], |
85 User['rsync'] | |
86 ], | |
87 minute => '*/10' | 103 minute => '*/10' |
88 } | 104 } |
89 | 105 |
90 cron {'update_malware': | 106 cron {'update_malware': |
91 ensure => present, | 107 ensure => present, |
92 command => "python -m sitescripts.subscriptions.bin.updateMalwareDomainsList
", | 108 command => "python -m sitescripts.subscriptions.bin.updateMalwareDomainsList
", |
93 user => rsync, | 109 user => rsync, |
94 require => [ | 110 require => User['rsync'], |
95 User['rsync'] | |
96 ], | |
97 hour => '*/6', | 111 hour => '*/6', |
98 minute => 15 | 112 minute => 15 |
99 } | 113 } |
100 | 114 |
101 cron {'update_repos': | 115 cron {'update_repos': |
102 ensure => present, | 116 ensure => present, |
103 command => "/home/rsync/update_repos.sh", | 117 command => "/home/rsync/update_repos.sh", |
104 user => rsync, | 118 user => rsync, |
105 require => [ | 119 require => [ |
106 User['rsync'], | 120 User['rsync'], |
107 File['/home/rsync/update_repos.sh'] | 121 File['/home/rsync/update_repos.sh'] |
108 ], | 122 ], |
109 minute => '8-58/10' | 123 minute => '8-58/10' |
110 } | 124 } |
111 | 125 |
112 class {'sitescripts': | 126 class {'sitescripts': |
113 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' | 127 sitescriptsini_source => 'puppet:///modules/filtermaster/sitescripts' |
114 } | 128 } |
115 } | 129 } |
LEFT | RIGHT |