Initial commit erasing history
This commit is contained in:
parent
e04f86fd9a
commit
7d8751ffe8
712 changed files with 7348 additions and 0 deletions
24
roles/omnetpp/tasks/main_lin.yml
Normal file
24
roles/omnetpp/tasks/main_lin.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
- name: Install OMNet++
|
||||
block:
|
||||
- name: Create destination for Omnet++
|
||||
file:
|
||||
path: /opt/omnetpp
|
||||
state: directory
|
||||
- name: Download and unpack Omnet++
|
||||
unarchive:
|
||||
src: https://github.com/omnetpp/omnetpp/releases/download/omnetpp-6.0.1/omnetpp-6.0.1-linux-x86_64.tgz
|
||||
dest: /opt/omnetpp
|
||||
remote_src: yes
|
||||
|
||||
# TODO install inet system-wide
|
||||
- name: Install INET Framework
|
||||
block:
|
||||
- name: Create destination for INET Framework
|
||||
file:
|
||||
path: /opt/omnetpp-inet
|
||||
state: directory
|
||||
- name: Download and unpack INET Framework
|
||||
unarchive:
|
||||
src: https://github.com/inet-framework/inet/releases/download/v4.4.1/inet-4.4.1-src.tgz
|
||||
dest: /opt/omnetpp-inet
|
||||
remote_src: yes
|
Loading…
Add table
Add a link
Reference in a new issue