Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openssl security updates to resolve a couple open PSIRT issues #2982

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions playbooks/security-patches.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
---
- hosts: all:!vyatta-*
tasks:
- name: Patch CVE-2017-5335 CVE-2017-5336 CVE-2017-5337 CVE-2017-3735 CVE-2017-1000257
- name: Patch CVE-2018-0737 CVE-2018-0732
apt:
name: "{{ item }}"
state: latest
update_cache: yes
cache_valid_time: 3600
with_items:
- libgnutls26
- openssl
- curl
- libcurl3
- libcurl3-gnutls
- openssh-server
- apache2
register: pkgupdate
until: pkgupdate|succeeded
retries: 5
Expand All @@ -24,11 +18,6 @@
name: haproxy
state: restarted
when: "pkgupdate.changed and ('controller' in group_names or 'swiftnode' in group_names)"
- name: restart ssh
service:
name: ssh
state: restarted
when: pkgupdate.changed
- name: restart apache
service:
name: apache2
Expand Down