diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-10-25 04:36:03 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-10-25 04:36:03 +0000 |
commit | e18fa3d92640da04b003475c2aabf3ff1f468714 (patch) | |
tree | 3a04441c2452a664b5aa40dc181dfb2f24471223 /Tools | |
parent | 9acc2f09542bc860408821e02d65b85590c7444c (diff) | |
download | ports-e18fa3d92640da04b003475c2aabf3ff1f468714.tar.gz ports-e18fa3d92640da04b003475c2aabf3ff1f468714.zip |
Fix a couple of bugs in the extraction of this from dopackages, and
flatten the setupnode() function into the main body since it's only
called from one place.
Notes
Notes:
svn path=/head/; revision=120107
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/dosetupnode | 53 |
1 files changed, 20 insertions, 33 deletions
diff --git a/Tools/portbuild/scripts/dosetupnode b/Tools/portbuild/scripts/dosetupnode index 48d8790777ac..e17af71bbe23 100755 --- a/Tools/portbuild/scripts/dosetupnode +++ b/Tools/portbuild/scripts/dosetupnode @@ -4,44 +4,31 @@ pb=/var/portbuild arch=$1 branch=$2 -mach=$3 +node=$3 shift . ${pb}/${arch}/portbuild.conf . ${pb}/scripts/buildenv -# usage: setupnode pb arch scripts branch me node md5 tmpdir -setupnode () { - pb=$1 - arch=$2 - scripts=$3 - branch=$4 - me=$5 - node=$6 - md5=$7 - tmpdir=$8 - - echo "setting up of $node started at $(date)" - - # Read in client config and decide if the node is disconnected or not (i.e. mounts via NFS) - disconnected=0 - . ${pb}/${arch}/portbuild.${node} - - scp -p ${scripts}/setupnode ${client_user}@${node}:/tmp - ssh -n ${client_user}@${node} sh /tmp/setupnode ${me} ${pb} ${arch} ${branch} ${tmpdir} ${md5} ${disconnected} - - if [ "${disconnected}" = 1 ]; then - rsync ${rsync_gzip} -r -l -p --delete ${pb}/scripts ${client_user}@${node}:${pb}/ - rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/portbuild* ${client_user}@${node}:${pb}/${arch} - rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/ports ${client_user}@${node}:${pb}/${arch}/${branch} - rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/src ${client_user}@${node}:${pb}/${arch}/${branch} - rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/doc ${client_user}@${node}:${pb}/${arch}/${branch} - rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/tarballs/bindist* ${client_user}@${node}:${pb}/${arch}/${branch}/tarballs - fi - - echo "setting up of $node ended at $(date)" -} +echo "setting up of $node started at $(date)" + +# Read in client config and decide if the node is disconnected or not (i.e. mounts via NFS) +disconnected=0 +. ${pb}/${arch}/portbuild.${node} md5=$(/sbin/md5 ${pb}/${arch}/${branch}/tarballs/bindist.tar | awk '{print $4}') -setupnode ${pb} ${arch} ${pb}/scripts ${branch} $(hostname) ${mach} ${md5} ${scratchdir} + +scp -p ${pb}/scripts/setupnode ${client_user}@${node}:/tmp +ssh -n ${client_user}@${node} ${sudo_cmd} sh /tmp/setupnode $(hostname) ${pb} ${arch} ${branch} ${scratchdir} ${md5} ${disconnected} + +if [ "${disconnected}" = 1 ]; then + rsync ${rsync_gzip} -r -l -p --delete ${pb}/scripts ${client_user}@${node}:${pb}/ + rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/portbuild* ${client_user}@${node}:${pb}/${arch} + rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/ports ${client_user}@${node}:${pb}/${arch}/${branch} + rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/src ${client_user}@${node}:${pb}/${arch}/${branch} + rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/doc ${client_user}@${node}:${pb}/${arch}/${branch} + rsync ${rsync_gzip} -r -l -p --delete ${pb}/${arch}/${branch}/tarballs/bindist* ${client_user}@${node}:${pb}/${arch}/${branch}/tarballs +fi + +echo "setting up of $node ended at $(date)" |