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,23 @@
|
|||
---
|
||||
|
||||
- name: Installing dependencies
|
||||
apt:
|
||||
pkg: apt-transport-https
|
||||
state: present
|
||||
|
||||
- name: Adding APT key
|
||||
apt_key:
|
||||
id: 548C16BF
|
||||
url: https://download.newrelic.com/548C16BF.gpg
|
||||
|
||||
- name: Add APT repository
|
||||
apt_repository:
|
||||
repo: "deb http://apt.newrelic.com/debian/ newrelic non-free"
|
||||
update_cache: yes
|
||||
|
||||
- name: Installing packages
|
||||
apt:
|
||||
pkg: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- newrelic-sysmond
|
Loading…
Add table
Add a link
Reference in a new issue