Merge "Simplify conditional statement for ALT_NEXUS_REPO"
[releng/global-jjb.git] / shell / create-netrc.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> create-netrc.sh"
12
13 # Ensure we fail the job if any steps fail.
14 set -eu -o pipefail
15
16 ALT_NEXUS_URL="${ALT_NEXUS_URL:-}"
17
18 if [ -z "$ALT_NEXUS_URL" ]
19 then
20     NEXUS_URL="${NEXUSPROXY:-$NEXUS_URL}"
21 else
22     NEXUS_URL="${ALT_NEXUS_URL}"
23 fi
24
25 CREDENTIAL=$(xmlstarlet sel -N "x=http://maven.apache.org/SETTINGS/1.0.0" \
26     -t -m "/x:settings/x:servers/x:server[x:id='${SERVER_ID}']" \
27     -v x:username -o ":" -v x:password \
28     "$SETTINGS_FILE")
29
30 machine=$(echo "$NEXUS_URL" | awk -F/ '{print $3}')
31 user=$(echo "$CREDENTIAL" | cut -f1 -d:)
32 pass=$(echo "$CREDENTIAL" | cut -f2 -d:)
33
34 echo "machine ${machine%:*} login $user password $pass" > ~/.netrc