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

Commit

Permalink
Merge pull request #75 from palantirnet/apt-update-patch
Browse files Browse the repository at this point in the history
Add provisioning steps for older boxes
  • Loading branch information
becw authored May 12, 2020
2 parents 3e9299e + d61794b commit 39bed96
Showing 1 changed file with 16 additions and 0 deletions.
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

0 comments on commit 39bed96

Please sign in to comment.