blob: ecaa870bfc9df8b002d71bc82ff04449b3fa54ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# update from the local CVS repository
# the source dir where this script is
SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
. $SCRIPT_DIR/auto-build-common
# the name of this script
SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
LOGFILE=/home/pd/logs/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt
update_distro ()
{
distro=$1
echo "------------------------------------------------------------" >> $LOGFILE 2>&1
echo "$distro" >> $LOGFILE 2>&1
echo "------------------------------------------------------------" >> $LOGFILE 2>&1
/home/pd/rsync/$distro/scripts/update-developer-layout.sh >> $LOGFILE 2>&1
}
touch $LOGFILE
update_distro pd-extended
update_distro pd-extended-release
update_distro pd-main
update_distro pd-devel
|