Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapcache
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapcache
Commits
b07b373b
Commit
b07b373b
authored
Apr 14, 2020
by
Thomas Gambier
🚴🏼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove temporary files
parent
6fc26a35
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
slapcache/signature.py
slapcache/signature.py
+22
-16
No files found.
slapcache/signature.py
View file @
b07b373b
...
...
@@ -181,7 +181,6 @@ class Signature:
"""
Download a tar of the repository from cache, and untar it.
"""
info
,
sha256path
=
tempfile
.
mkstemp
()
shacache
=
NetworkCache
(
self
.
config
.
slapos_configuration
)
if
shacache
.
signature_certificate_list
is
None
:
...
...
@@ -193,11 +192,12 @@ class Signature:
if
download_metadata_dict
:
self
.
log
(
'File downloaded in %s'
,
path
)
current_sha256
=
self
.
get_file_hash
(
path
)
with
tempfile
.
NamedTemporaryFile
()
as
f_256
:
sha256path
=
f_256
.
name
if
shacache
.
download
(
path
=
sha256path
,
required_key_list
=
[
'timestamp'
],
strategy
=
strategy
,
is_sha256file
=
True
):
self
.
log
(
'sha 256 downloaded in %s'
,
sha256path
)
with
open
(
sha256path
,
'rb'
)
as
f
:
expected_sha256
=
f
.
read
()
expected_sha256
=
f_256
.
read
()
if
current_sha256
==
expected_sha256
:
return
True
...
...
@@ -209,9 +209,15 @@ class Signature:
Get status information and return its path
"""
info
,
path
=
tempfile
.
mkstemp
()
if
not
self
.
_download
(
path
)
==
False
:
if
self
.
_download
(
path
):
try
:
shutil
.
move
(
path
,
self
.
config
.
destination
)
except
Exception
as
e
:
self
.
log
(
e
)
self
.
log
(
'Fail to move %s to %s, maybe permission problem?'
,
path
,
self
.
config
.
destination
)
os
.
remove
(
path
)
else
:
os
.
remove
(
path
)
raise
ValueError
(
"No result from shacache"
)
def
_upload
(
self
,
path
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment