Attention is currently required from: osmith, daniel.
Patch set 2:Code-Review +2
View Change
1 comment:
File jenkins-common.sh:
Patch Set #2, Line 211: SUBNET="$(echo "($SUBNET + 1) % 256" | bc)"
I was about to say that with $(expr ...) this can be done simpler:
SUBNET=$(expr ($SUBNET + 1) % 256)
but as it turned out it requires escaping of the parentheses:
SUBNET=$(expr \( $SUBNET + 1 \) % 256)
To view, visit change 30770. To unsubscribe, or for help writing mail filters, visit settings.
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I57152b08ef0f38e17e7019a8df032189b03f56cf
Gerrit-Change-Number: 30770
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann@sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-Attention: osmith <osmith@sysmocom.de>
Gerrit-Attention: daniel <dwillmann@sysmocom.de>
Gerrit-Comment-Date: Mon, 16 Jan 2023 15:00:05 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment