Skip to content

Commit

Permalink
Include --netrc-file when calling curl
Browse files Browse the repository at this point in the history
Resolves: #401

Signed-off-by: Sergio Arroutbi <[email protected]>
  • Loading branch information
sarroutbi committed Jan 31, 2023
1 parent 0bb86d3 commit 4d17c57
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
11 changes: 10 additions & 1 deletion src/pins/tang/clevis-decrypt-tang
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,16 @@ xfr="$(jose jwk exc -i '{"alg":"ECMR"}' -l- -r- <<< "$clt$eph")"

rec_url="$url/rec/$kid"
ct="Content-Type: application/jwk+json"
if ! rep="$(curl -sfg -X POST -H "$ct" --data-binary @- "$rec_url" <<< "$xfr")"; then

# Check if netrc-file option exists
curl_net_rc_option="--netrc-file"
curl_net_rc_file="/root/.netrc"
curl --netrc-file /root/.netrc ${rec_url} || {
curl_net_rc_option=""
curl_net_rc_file=""
}

if ! rep="$(curl "${curl_net_rc_option}" "${curl_net_rc_file}" -sfg -X POST -H "$ct" --data-binary @- "$rec_url" <<< "$xfr")"; then
echo "Error communicating with server $url" >&2
exit 1
fi
Expand Down
10 changes: 9 additions & 1 deletion src/pins/tang/clevis-encrypt-tang
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ if ! url="$(jose fmt -j- -Og url -u- <<< "$cfg")"; then
exit 1
fi

# Check if netrc-file option exists
curl_net_rc_option="--netrc-file"
curl_net_rc_file="/root/.netrc"
curl --netrc-file /root/.netrc ${url} || {
curl_net_rc_option=""
curl_net_rc_file=""
}

thp="$(jose fmt -j- -Og thp -Su- <<< "$cfg")" || true

### Get the advertisement
Expand All @@ -92,7 +100,7 @@ elif jws="$(jose fmt -j- -g adv -Su- <<< "$cfg")"; then
fi

thp="${thp:-any}"
elif ! jws="$(curl -sfg "$url/adv/$thp")"; then
elif ! jws="$(curl "${curl_net_rc_option}" "${curl_net_rc_file}" -sfg "$url/adv/$thp")"; then
echo "Unable to fetch advertisement: '$url/adv/$thp'!" >&2
exit 1
fi
Expand Down

0 comments on commit 4d17c57

Please sign in to comment.