diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-10 22:54:43 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-10 23:00:08 +0100 |
commit | 5ae5932b2f84b58f51f220f5d3103f96a8ef09e8 (patch) | |
tree | 0783cbdbbd92c15b79beb2372b382db4b0e0b983 /gnu | |
parent | 7fda7b8fad5ed47ef36d7d00d8e0652d6c43c268 (diff) | |
download | guix-5ae5932b2f84b58f51f220f5d3103f96a8ef09e8.tar.gz guix-5ae5932b2f84b58f51f220f5d3103f96a8ef09e8.zip |
gnu: ansible: Update to 2.7.8 [fixes CVE-2019-3828].
* gnu/packages/admin.scm (ansible): Update to 2.7.8.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index e26bf030cc..48b8582d52 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1598,14 +1598,13 @@ of supported upstream metrics systems simultaneously.") (define-public ansible (package (name "ansible") - (version "2.7.7") + (version "2.7.8") (source (origin (method url-fetch) (uri (pypi-uri "ansible" version)) (sha256 - (base32 - "0l4id24jqi578xmybvwrz10sm2jhs90gk9gs1y04gfarz4vcj304")))) + (base32 "11yx7vd0mp5gkq428af141dwnrwf8f9cp3f65243qbs9icjxnrrx")))) (build-system python-build-system) (native-inputs `(("python-bcrypt" ,python-bcrypt) |