1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/usr/bin/env python
# Copyright (c) 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable-all
DOCUMENTATION = '''
---
module: fetch_url_and_verify
short_description: Fetch image and verify against a SHA256SUM URL
description:
- Download a URL and check it against a remote SHA256SUMS file
options:
url: Image URL
image_dest: Image filename
sha256_url: SHA256SUMS URL
dest: python file mode (w, wb, a, ab)
retries: fetch retries
'''
def main():
module = AnsibleModule(
argument_spec={
'url': {'required': True, 'type': 'str'},
'sha256url': {'required': True, 'type': 'str'},
'dest': {'required': True, 'type': 'path'},
'retries': {'required': False, 'type': 'int', 'default': 3},
}
)
params = module.params
url = params['url']
dest = params['dest']
sha256url = params['sha256url']
retries = params['retries']
sha256line = ''
image_dir, image_filename = os.path.split(dest)
rc, stdout, stderr = module.run_command(['curl', '-sS', sha256url])
if rc == 0 and stdout:
sha256line = next(
(l for l in stdout.splitlines() if image_filename in l), "")
if not sha256line:
module.fail_json(
msg="Unable to find SHA256SUMS line for file {}".format(
image_filename))
rc = \
module.run_command(['sha256sum', '-c'], data=sha256line, cwd=image_dir)[0]
if rc == 0:
sha256sum = sha256line.split()[0]
module.exit_json(changed=False, dest=dest, url=url,
sha256sum=sha256sum)
for _ in range(retries):
curl_rc, stdout, stderr = module.run_command(
['curl', '-sS', '-o', dest, url], cwd=image_dir)
if curl_rc == 0:
sha256_rc, stdout, stderr = module.run_command(['sha256sum', '-c'],
data=sha256line,
cwd=image_dir)
if sha256_rc == 0:
module.exit_json(changed=True)
module.fail_json(msg="Unable to download {}".format(url), stdout=stdout,
stderr=stderr)
# <<INCLUDE_ANSIBLE_MODULE_COMMON>>
from ansible.module_utils.basic import *
if __name__ == '__main__':
main()
|