fixeria has submitted this change. (
https://gerrit.osmocom.org/c/docker-playground/+/27008 )
Change subject: ttcn3-pgw-test: fix jenkins.sh: do not use bash specific syntax
......................................................................
ttcn3-pgw-test: fix jenkins.sh: do not use bash specific syntax
On some systems /bin/sh is a symbolic link to bash, so everything
works fine. On systems where /bin/sh is a real sh, copy fails:
cp: cannot access 'open5gs-{smf,upf,nrf}.yaml': No such file or directory
Change-Id: I64e9ddefdb6deb21b3bce3bc1af875a92919e6c9
Related: SYS#5602
---
M ttcn3-pgw-test/jenkins.sh
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
fixeria: Looks good to me, approved; Verified
diff --git a/ttcn3-pgw-test/jenkins.sh b/ttcn3-pgw-test/jenkins.sh
index 0f6ee5d..662e49b 100755
--- a/ttcn3-pgw-test/jenkins.sh
+++ b/ttcn3-pgw-test/jenkins.sh
@@ -15,7 +15,7 @@
mkdir $VOL_BASE_DIR/pgw
cp freeDiameter-smf.conf $VOL_BASE_DIR/pgw/
-cp open5gs-{smf,upf,nrf}.yaml $VOL_BASE_DIR/pgw/
+cp open5gs-*.yaml $VOL_BASE_DIR/pgw/
SUBNET=18
network_create $SUBNET
--
To view, visit
https://gerrit.osmocom.org/c/docker-playground/+/27008
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I64e9ddefdb6deb21b3bce3bc1af875a92919e6c9
Gerrit-Change-Number: 27008
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: merged