Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
- name: Install DotDeb repo.
|
||||
apt_repository:
|
||||
repo: "{{ item }}"
|
||||
with_items: "{{ dotdeb_sources }}"
|
||||
register: dotdeb_apt_repo_result
|
||||
|
||||
- name: Import DotDeb GPG key.
|
||||
apt_key:
|
||||
url: "{{ dotdeb_repo_gpg_key_url }}"
|
||||
register: dotdeb_apt_key_result
|
||||
|
||||
- name: Update apt cache if repo or key added.
|
||||
apt: update_cache=yes
|
||||
when: dotdeb_apt_repo_result.changed or dotdeb_apt_key_result.changed
|
Loading…
Add table
Add a link
Reference in a new issue