blob: a24ea98b786f9a1a6626a2f6c73eacdaa1cb4c8f [file] [log] [blame]
Luca Prete8d4e8bc2016-08-24 14:49:54 -07001---
2#
3# Clones the Mininet repository and does a full Mininet installation, including Wireshark
4#
5- name: Cloning the mininet repository
Eric Tang49c291d2018-04-29 14:16:08 +08006 git: repo=https://github.com/mininet/mininet.git dest=/home/ubuntu/mininet
Luca Prete8d4e8bc2016-08-24 14:49:54 -07007 become: true
8 become_user: ubuntu
alshabibbdb7b372016-05-25 09:46:49 -07009
Luca Prete8d4e8bc2016-08-24 14:49:54 -070010- name: Installing mininet
Eric Tang49c291d2018-04-29 14:16:08 +080011 command: mininet/util/install.sh -a
12 args:
13 chdir: /home/ubuntu
14 become: true
15 become_user: ubuntu