repo.or.cz
/
citadel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Fixed problems related to saving vCards in config rooms. For starters, we were...
[citadel.git]
/
contrib
/
upgradebuilds.sh
blob
fda4f930fdf6755d0bfcd11bf0d81dbbc75a7d27
1
#!/bin/bash
2
source
include.sh
3
apt-get update
4
WD
=
`pwd`
5
# get everything built.
6
for
i
in
`cat
$TARGETS
`
;
do
7
cd
$WD
8
DISTRO
=
`dirname
$i
`
9
VSERVER_BASE
=
`basename
$i
`
10
DISTVER
=
`basename
$i
|sed "s;CitadelBuild.;;"`
11
DISTVER
=
`cd
$APACHE_ROOT
/public_html/
$DISTRO
/; ls -d ?
$DISTVER
`
12
echo
"****** upgrading
$DISTRO
******"
13
14
UpgradeBuildTarget
$i
15
16
17
done