diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-12-09 00:50:02 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-12-09 00:50:02 +0000 |
commit | 5bc0ea6f26adec7533c07b8d904a0f2154e496ab (patch) | |
tree | 5dfdf817512e8eea3eb50e51aea1ca2a24787caa | |
parent | 4740b6f704d72a56db38d9c904dfc4c4c913ef6f (diff) | |
download | ports-5bc0ea6f26adec7533c07b8d904a0f2154e496ab.tar.gz ports-5bc0ea6f26adec7533c07b8d904a0f2154e496ab.zip |
common.conf has to be copied over as well as client.conf.
Notes
Notes:
svn path=/head/; revision=265889
-rwxr-xr-x | Tools/portbuild/scripts/dosetupnode | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/portbuild/scripts/dosetupnode b/Tools/portbuild/scripts/dosetupnode index e5b531da42b0..7cd14c1e6ca7 100755 --- a/Tools/portbuild/scripts/dosetupnode +++ b/Tools/portbuild/scripts/dosetupnode @@ -71,14 +71,14 @@ setup() { ${client_user}@${node}:${pb}/ checkerror $? || (echo "Copying scripts to ${node} failed"; return 1) - # client.conf can be a symlink; copy the actual file - rsync ${rsync_gzip} -e "${ssh_cmd}" -r -L -p --delete ${pb}/${arch}/client.conf \ + # client.conf and common.conf can be symlinks; copy the actual files + rsync ${rsync_gzip} -e "${ssh_cmd}" -r -L -p --delete ${pb}/${arch}/*.conf \ ${client_user}@${node}:${pb}/${arch} - checkerror $? || (echo "copying client.conf to ${node} failed"; return 1) + checkerror $? || (echo "copying *.conf to ${node} failed"; return 1) rsync ${rsync_gzip} -e "${ssh_cmd}" -r -l -p --delete ${pb}/${arch}/portbuild* \ ${client_user}@${node}:${pb}/${arch} - checkerror $? || (echo "copying portbuild.conf files to ${node} failed"; return 1) + checkerror $? || (echo "copying portbuild* files to ${node} failed"; return 1) if [ -f "${pb}/${arch}/clients/bindist-${node}.tar" ]; then rsync ${rsync_gzip} -e "${ssh_cmd}" -r -L -p --delete \ |