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

File software-install-solution.yaml, 289 bytes (added by Vic Thomas, 9 years ago)
Line 
1---
2- hosts: nodes
3  remote_user: root
4  sudo: yes
5  tasks:
6  - name: Update apt cache
7    apt: update_cache=yes
8
9  - name: Install dnsutils (for dig)
10    apt: name=dnsutils
11
12  - name: Install geoip-bin (for geoiplookup)
13    apt: name=geoip-bin
14
15  - name: Install curl
16    apt: name=curl
17