Luca Prete | 8d4e8bc | 2016-08-24 14:49:54 -0700 | [diff] [blame] | 1 | --- |
| 2 | # |
| 3 | # Clones the Mininet repository and does a full Mininet installation, including Wireshark |
| 4 | # |
| 5 | - name: Cloning the mininet repository |
Eric Tang | 49c291d | 2018-04-29 14:16:08 +0800 | [diff] [blame] | 6 | git: repo=https://github.com/mininet/mininet.git dest=/home/ubuntu/mininet |
Luca Prete | 8d4e8bc | 2016-08-24 14:49:54 -0700 | [diff] [blame] | 7 | become: true |
| 8 | become_user: ubuntu |
alshabib | bdb7b37 | 2016-05-25 09:46:49 -0700 | [diff] [blame] | 9 | |
Luca Prete | 8d4e8bc | 2016-08-24 14:49:54 -0700 | [diff] [blame] | 10 | - name: Installing mininet |
Eric Tang | 49c291d | 2018-04-29 14:16:08 +0800 | [diff] [blame] | 11 | command: mininet/util/install.sh -a |
| 12 | args: |
| 13 | chdir: /home/ubuntu |
| 14 | become: true |
| 15 | become_user: ubuntu |