@@ -29,18 +29,13 @@ docker::_authenticate() {
29
29
local -r user=" $1 " registry=" $2 " url=" $3 "
30
30
local realm= token= req_params=() resp_headers=
31
31
32
- # Reuse our previous token if we already got one.
33
- if [ -f " ${token_dir} /${registry} " ]; then
34
- req_params+=(" -K" " ${token_dir} /${registry} " )
35
- fi
36
-
37
32
# Query the registry to see if we're authorized.
38
33
common::log INFO " Querying registry for permission grant"
39
34
resp_headers=$( CURL_IGNORE=401 common::curl " ${curl_opts[@]} " -I ${req_params[@]+" ${req_params[@]} " } -- " ${url} " )
40
35
41
- # If our token is still valid , we're done.
36
+ # If we don't need to authenticate , we're done.
42
37
if ! grep -qi ' ^www-authenticate:' <<< " ${resp_headers}" ; then
43
- common::log INFO " Found valid credentials in cache "
38
+ common::log INFO " Permission granted "
44
39
return
45
40
fi
46
41
@@ -77,7 +72,7 @@ docker::_authenticate() {
77
72
# Store the new token.
78
73
if [ -n " ${token} " ]; then
79
74
mkdir -m 0700 -p " ${token_dir} "
80
- (umask 077 && printf ' header "Authorization: Bearer %s"' " ${token} " > " ${token_dir} /${registry} " )
75
+ (umask 077 && printf ' header "Authorization: Bearer %s"' " ${token} " > " ${token_dir} /${registry} . $$ " )
81
76
common::log INFO " Authentication succeeded"
82
77
fi
83
78
}
@@ -127,8 +122,8 @@ docker::_download() {
127
122
128
123
# Authenticate with the registry.
129
124
docker::_authenticate " ${user} " " ${registry} " " ${url_manifest} "
130
- if [ -f " ${token_dir} /${registry} " ]; then
131
- req_params+=(" -K" " ${token_dir} /${registry} " )
125
+ if [ -f " ${token_dir} /${registry} . $$ " ]; then
126
+ req_params+=(" -K" " ${token_dir} /${registry} . $$ " )
132
127
fi
133
128
134
129
# Attempt to use the image manifest list if it exists.
@@ -288,7 +283,7 @@ docker::import() (
288
283
fi
289
284
290
285
# Create a temporary directory and chdir to it.
291
- trap ' common::rmall "${tmpdir}" 2> /dev/null; [ -n "${registry}" ] && rm -f "${token_dir}/${registry}" 2> /dev/null' EXIT
286
+ trap ' common::rmall "${tmpdir}" 2> /dev/null; rm -f "${token_dir}"/*.$$ 2> /dev/null' EXIT
292
287
tmpdir=$( common::mktmpdir enroot)
293
288
common::chdir " ${tmpdir} "
294
289
0 commit comments