Mercurial > dnsbl
annotate package.bash @ 59:510a511ad554
Add resolver processes to allow better performance on busy machines
author | carl |
---|---|
date | Mon, 03 Jan 2005 18:35:50 -0800 |
parents | 419e00901570 |
children | 390ed250c5d2 |
rev | line source |
---|---|
41
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
1 #!/bin/bash |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
2 |
59
510a511ad554
Add resolver processes to allow better performance on busy machines
carl
parents:
57
diff
changeset
|
3 VER=dnsbl-4.0 |
41
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
4 mkdir $VER |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
5 target1=/home/httpd/html/510sg/util/dnsbl.tar.gz |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
6 target2=/home/httpd/html/510sg/dnsbl.conf |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
7 target3=/home/httpd/html/510sg/dnsbl.html |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
8 |
57 | 9 cp sample1.conf $VER/dnsbl.conf |
10 cp sample.conf $VER | |
11 cp html-tags.conf $VER | |
12 cp hosts-ignore.conf $VER | |
13 cp tld.conf $VER | |
14 cp *cpp $VER | |
15 cp *rc $VER | |
16 cp install.bash $VER | |
17 cp *spec $VER | |
18 cp LICENSE $VER | |
19 cp RELEASE_NOTES $VER | |
20 tar cfvz $target1 $VER | |
41
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
21 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
22 cp sample.conf $target2 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
23 cp dnsbl.html $target3 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
24 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
25 scp $target1 ns1:$target1 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
26 scp $target2 ns1:$target2 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
27 scp $target3 ns1:$target3 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
28 rm -rf $VER |