|
Revision 5124, 293 bytes
(checked in by p_lindheimer, 6 years ago)
|
create md5sums for all files, if some files will need special case they will be handled during install_amp process - for now this means manager.con, cdr_mysql.conf and a few others will get prompted
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#!/bin/bash |
|---|
| 2 |
# use this script like: |
|---|
| 3 |
# md5-amp_conf.sh 1.10.00X |
|---|
| 4 |
|
|---|
| 5 |
case "$1" in |
|---|
| 6 |
?*) |
|---|
| 7 |
|
|---|
| 8 |
cd ../amp_conf |
|---|
| 9 |
|
|---|
| 10 |
find agi-bin astetc bin cgi-bin htdocs htdocs_panel mohmp3 sbin sounds -type f | xargs md5sum | grep -v .svn > ../upgrades/$1.md5 |
|---|
| 11 |
|
|---|
| 12 |
;; |
|---|
| 13 |
*) |
|---|
| 14 |
|
|---|
| 15 |
echo "usage: md5-amp_conf <version>"; |
|---|
| 16 |
|
|---|
| 17 |
;; |
|---|
| 18 |
esac |
|---|