Adaptions to changes in actions.c
[privoxy.git] / privoxy.monthly
1 #!/bin/sh
2
3 # ********************************************************************
4
5 #  File        :  $Source: /cvsroot/ijbswa/current/privoxy.monthly,v $
6
7 #  Purpose     :  Downloads updated configuration (blocklists, ...)
8 #                 to the machine.
9
10 #  Copyright   :  Written by and Copyright (C) 2001 the SourceForge
11 #                 Privoxy team. http://www.privoxy.org/
12
13 #                 Based on the Internet Junkbuster originally written
14 #                 by and Copyright (C) 1997 Anonymous Coders and 
15 #                 Junkbusters Corporation.  http://www.junkbusters.com
16
17 #                 This program is free software; you can redistribute it 
18 #                 and/or modify it under the terms of the GNU General
19 #                 Public License as published by the Free Software
20 #                 Foundation; either version 2 of the License, or (at
21 #                 your option) any later version.
22
23 #                 This program is distributed in the hope that it will
24 #                 be useful, but WITHOUT ANY WARRANTY; without even the
25 #                 implied warranty of MERCHANTABILITY or FITNESS FOR A
26 #                 PARTICULAR PURPOSE.  See the GNU General Public
27 #                 License for more details.
28
29 #                 The GNU General Public License should be included with
30 #                 this file.  If not, you can view it at
31 #                 http://www.gnu.org/copyleft/gpl.html
32 #                 or write to the Free Software Foundation, Inc., 59
33 #                 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
34
35 #  Revisions   :
36 #     $Log: privoxy.monthly,v $
37 #     Revision 1.2  2002/03/24 11:40:14  swa
38 #     name change
39 #
40 #     Revision 1.1  2002/03/24 11:23:44  swa
41 #     name change
42 #
43 #     Revision 1.3  2001/05/24 07:41:33  swa
44 #     added header
45 #
46
47
48 # ********************************************************************/
49
50 set -e
51
52 # blocklist
53 wget -q --output-document=/etc/junkbuster/blocklist.new \
54      http://www.waldherr.org/blocklist
55
56 mv -f /etc/junkbuster/blocklist.new /etc/junkbuster/blocklist
57
58 if [ -f /etc/junkbuster/blocklist.local ] ; then
59    cat /etc/junkbuster/blocklist.local >> /etc/junkbuster/blocklist
60 fi
61 chmod 644 /etc/junkbuster/blocklist
62
63 # cookiefile
64 wget -q --output-document=/etc/junkbuster/cookiefile.new \
65      http://www.waldherr.org/cookiefile
66
67 mv -f /etc/junkbuster/cookiefile.new /etc/junkbuster/cookiefile
68
69 if [ -f /etc/junkbuster/cookiefile.local ] ; then
70    cat /etc/junkbuster/cookiefile.local >> /etc/junkbuster/cookiefile
71 fi
72 chmod 644 /etc/junkbuster/cookiefile
73
74 # imagelist
75 wget -q --output-document=/etc/junkbuster/imagelist.new \
76      http://www.waldherr.org/imagelist
77
78 mv -f /etc/junkbuster/imagelist.new /etc/junkbuster/imagelist
79
80 if [ -f /etc/junkbuster/imagelist.local ] ; then
81    cat /etc/junkbuster/imagelist.local >> /etc/junkbuster/imagelist
82 fi
83 chmod 644 /etc/junkbuster/imagelist
84