pbulk-0.64:

Ensure to reset port after each loop, so that "client" and "client:port"
notation can be mixed.
This commit is contained in:
joerg 2016-12-18 22:41:12 +00:00
parent da31c10d9c
commit 60337d0d7a
4 changed files with 8 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.79 2016/12/18 22:38:16 joerg Exp $
# $NetBSD: Makefile,v 1.80 2016/12/18 22:41:12 joerg Exp $
PKGNAME= pbulk-0.63
PKGNAME= pbulk-0.64
COMMENT= Modular bulk build framework
.include "../../pkgtools/pbulk/Makefile.common"

View file

@ -1,5 +1,5 @@
#!@SH@
# $NetBSD: build-client-start,v 1.3 2015/06/07 22:49:04 joerg Exp $
# $NetBSD: build-client-start,v 1.4 2016/12/18 22:41:12 joerg Exp $
. @PBULK_CONFIG@
@ -18,6 +18,7 @@ for client in ${build_clients}; do
client=${client%%:*}
;;
*)
port=
;;
esac
ssh $port $client "${pbuild} -c ${master_port_build} -b ${pbuild_script}" &

View file

@ -1,5 +1,5 @@
#!@SH@
# $NetBSD: client-prepare,v 1.1 2016/12/18 22:38:16 joerg Exp $
# $NetBSD: client-prepare,v 1.2 2016/12/18 22:41:12 joerg Exp $
. @PBULK_CONFIG@
@ -33,6 +33,7 @@ for client in ${unique_clients}; do
client=${client%%:*}
;;
*)
port=
;;
esac
ssh $port $client "${client_prepare_action}" &

View file

@ -1,5 +1,5 @@
#!@SH@
# $NetBSD: scan-client-start,v 1.5 2016/12/18 22:38:16 joerg Exp $
# $NetBSD: scan-client-start,v 1.6 2016/12/18 22:41:12 joerg Exp $
. @PBULK_CONFIG@
@ -26,6 +26,7 @@ for client in ${scan_clients}; do
client=${client%%:*}
;;
*)
port=
;;
esac
ssh $port $client "${pscan} -c ${master_port_scan} -M ${make} ${extra_pscan_args} ${pkgsrc}" &