Changeset 79962
- Timestamp:
- 06/30/11 16:08:48 (4 years ago)
- Location:
- contrib/mpab
- Files:
-
- 2 edited
-
deploy_archives.sh (modified) (2 diffs)
-
do_status.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
contrib/mpab/deploy_archives.sh
r79902 r79962 5 5 fi 6 6 if [[ -z "$PREFIX" ]]; then 7 PREFIX=" ../opt/local"7 PREFIX="/opt/local" 8 8 fi 9 9 # FIXME: configure these 10 10 # download server hostname 11 11 if [[ -z "$DLHOST" ]]; then 12 DLHOST= mparchives.local12 DLHOST="" 13 13 fi 14 14 # path where it keeps archives … … 31 31 aname=$(basename $archive) 32 32 echo deploying archive: $aname 33 #openssl dgst -ripemd160 -sign "${PRIVKEY}" -out ./${aname}.rmd160 ${archive} 34 #ssh ${DLHOST} mkdir -p ${DLPATH}/${portname} 35 #rsync -av --ignore-existing ./${aname}.rmd160 ${archive} ${DLHOST}:${DLPATH}/${portname} 33 if [[ -n "$PRIVKEY" ]]; then 34 openssl dgst -ripemd160 -sign "${PRIVKEY}" -out ./${aname}.rmd160 ${archive} 35 fi 36 if [[ -n "$DLHOST" ]]; then 37 ssh ${DLHOST} mkdir -p ${DLPATH}/${portname} 38 rsync -av --ignore-existing ./${aname}.rmd160 ${archive} ${DLHOST}:${DLPATH}/${portname} 39 fi 36 40 rm -f ./${aname}.rmd160 37 41 done -
contrib/mpab/do_status.sh
r79902 r79962 5 5 fi 6 6 if [[ -z "$PREFIX" ]]; then 7 PREFIX=" ../opt/local"7 PREFIX="/opt/local" 8 8 fi 9 9 if [[ -z "$STATUS_LOG" ]]; then
Note: See TracChangeset
for help on using the changeset viewer.

