From db214e395ed16f36edbd8644ddc649c7da5bb309 Mon Sep 17 00:00:00 2001 From: asami Date: Tue, 22 Jun 1999 06:41:39 +0000 Subject: Setup a client machine. Unmounts all read-only mounts that looks like portbuild temporary mounts, deletes all the chroot dirs and copies the portbuild script and the correct bindist tarball. --- Tools/portbuild/scripts/setupnode | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Tools/portbuild/scripts/setupnode (limited to 'Tools') diff --git a/Tools/portbuild/scripts/setupnode b/Tools/portbuild/scripts/setupnode new file mode 100755 index 000000000000..72dcb01908de --- /dev/null +++ b/Tools/portbuild/scripts/setupnode @@ -0,0 +1,11 @@ +#!/bin/sh +if [ $# != 3 ]; then + echo "usage: $0 master portbuilddir branch" + exit 1 +fi +if [ $(echo $(/sbin/mount | grep "$2/.*(read-only)" | awk '{print $3}' | wc -c)) != 0 ]; then + /sbin/umount -f $(/sbin/mount | grep "$2/.*(read-only)" | awk '{print $3}') +fi +rm -rf $2/*/chroot/* +scp -p -a $1:$2/scripts/portbuild $2/scripts +scp -p -a $1:$2/$3/tarballs/bindist.tar $2/$3/tarballs -- cgit