Mercurial > dnsbl
annotate package.bash @ 105:c3e9fa6b37c6
move to autoconf/automake/docbook
author | carl |
---|---|
date | Sun, 18 Dec 2005 09:31:13 -0800 |
parents | 5569df6d896e |
children |
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 |
102 | 3 VER=dnsbl-5.10 |
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 |
103 | 6 target2=/home/httpd/html/510sg/dnsbl/dnsbl.conf |
7 target3=/home/httpd/html/510sg/dnsbl/index.html | |
41
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 | |
82 | 14 cp *.cpp *.h *.rc $VER |
57 | 15 cp install.bash $VER |
16 cp *spec $VER | |
17 cp LICENSE $VER | |
18 cp RELEASE_NOTES $VER | |
19 tar cfvz $target1 $VER | |
41
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
20 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
21 cp sample.conf $target2 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
22 cp dnsbl.html $target3 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
23 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
24 scp $target1 ns1:$target1 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
25 scp $target2 ns1:$target2 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
26 scp $target3 ns1:$target3 |
d95af8129dfa
updates for 3.2, changing file layout, add queueid to messages
carl
parents:
diff
changeset
|
27 rm -rf $VER |