Changes between Version 35 and Version 36 of GENIExperimenter/Tutorials/GENI-SAVI/DesignSetup


Ignore:
Timestamp:
06/16/15 00:09:28 (9 years ago)
Author:
Vic Thomas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/GENI-SAVI/DesignSetup

    v35 v36  
    236236
    237237{{{
    238 #!python
    239238---
    240239- hosts: nodes
    241240  remote_user: root
     241  sudo: yes
    242242  tasks:
    243243  - name: Update apt cache
    244     apt: # INSERT ARGUMENTS HERE
     244    apt: update_cache=yes
    245245
    246246  - name: Install dnsutils (for dig)
    247     apt: # INSERT ARGUMENTS HERE
     247    apt: name=dnsutils
    248248
    249249  - name: Install geoip-bin (for geoiplookup)
    250     apt: # INSERT ARGUMENTS HERE
     250    apt: name=geoip-bin
    251251}}}
    252252