Commit b73c2017 by Kevin Falcone

Use unattended-upgrade to only take security updates

This allows for security updates to be applied during artifact creation,
but not applying other updates.
parent 47b02a78
...@@ -192,3 +192,7 @@ ...@@ -192,3 +192,7 @@
- Role: discovery - Role: discovery
- Added `PUBLISHER_FROM_EMAIL` for sending emails to publisher app users. - Added `PUBLISHER_FROM_EMAIL` for sending emails to publisher app users.
- Role: security
- Changed SECURITY_UPGRADE_ON_ANSIBLE to only apply security updates. If you want to retain the behavior of running safe-upgrade,
you should switch to using SAFE_UPGRADE_ON_ANSIBLE.
...@@ -20,6 +20,8 @@ SECURITY_UNATTENDED_UPGRADES: false ...@@ -20,6 +20,8 @@ SECURITY_UNATTENDED_UPGRADES: false
# set to true to upgrade all packages nightly. false will only upgrade from security repo. # set to true to upgrade all packages nightly. false will only upgrade from security repo.
SECURITY_UPDATE_ALL_PACKAGES: false SECURITY_UPDATE_ALL_PACKAGES: false
# set to true to run aptitute safe-upgrade whenever ansible is run # set to true to run aptitute safe-upgrade whenever ansible is run
SAFE_UPGRADE_ON_ANSIBLE: false
# set to true to run unattended-upgrade during ansible runs. This is expected to only install security udpates.
SECURITY_UPGRADE_ON_ANSIBLE: false SECURITY_UPGRADE_ON_ANSIBLE: false
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
- name: Update all system packages - name: Update all system packages
apt: apt:
upgrade: safe upgrade: safe
when: SECURITY_UPGRADE_ON_ANSIBLE when: SAFE_UPGRADE_ON_ANSIBLE
- name: Configure periodic unattended-upgrades - name: Configure periodic unattended-upgrades
template: template:
...@@ -50,6 +50,14 @@ ...@@ -50,6 +50,14 @@
state: absent state: absent
when: SECURITY_UPDATE_ALL_PACKAGES or not SECURITY_UNATTENDED_UPGRADES when: SECURITY_UPDATE_ALL_PACKAGES or not SECURITY_UNATTENDED_UPGRADES
# We dry-run because unattended-upgrade is quiet, and only had -d (debug) not -v (verbose)
- name: "Take security updates during ansible runs"
command: "{{ item }}"
when: SECURITY_UPGRADE_ON_ANSIBLE
with_items:
- unattended-upgrade --dry-run
- unattended-upgrade
#### Bash security vulnerability #### Bash security vulnerability
- name: Check if we are vulnerable - name: Check if we are vulnerable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment