GENIExperimenter/Tutorials/GENI-SAVI/DesignSetup: software-install.yaml

File software-install.yaml, 260 bytes (added by acb@cs.princeton.edu, 9 years ago)

Ansible playbook skeleton for installing software

Line 
1---
2- hosts: nodes
3  remote_user: root
4  tasks:
5  - name: Update apt cache
6    apt: # INSERT ARGUMENTS HERE
7
8  - name: Install dnsutils (for dig)
9    apt: # INSERT ARGUMENTS HERE
10
11  - name: Install geoip-bin (for geoiplookup)
12    apt: # INSERT ARGUMENTS HERE
13