Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Add provisioning steps for older boxes #75

Merged
merged 3 commits into from
May 12, 2020
Merged
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
16 changes: 16 additions & 0 deletions conf/vagrant/provisioning/roles/common/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
---

# These steps ("Update Yarn apt key" and "Remove Duplicity PPA repo") were added to fix issues with
# updating the apt cache on older boxes. Once the older versions (1.4.0 and below) are no longer supported,
# these first two steps can be removed.

- name: Common | Update Yarn apt key
become: true
command: apt-key adv --keyserver keys.gnupg.net --recv-keys 72ECF46A56B4AD39C907BBB71646B01B86E50310

- name: Common | Remove Duplicity PPA repo
become: true
apt_repository:
repo: ppa:duplicity-team
state: absent
tags: common

- name: Common | Update apt cache
become: true
apt: update-cache=yes
Expand Down