Pingping Lin | d28ab98 | 2016-08-29 18:42:52 +0000 | [diff] [blame] | 1 | --- |
| 2 | - hosts: {{ instance_name }} |
| 3 | gather_facts: False |
| 4 | connection: ssh |
| 5 | user: ubuntu |
| 6 | sudo: yes |
| 7 | tasks: |
| 8 | |
| 9 | - name: write message |
| 10 | shell: echo "{{ display_message }}" > /var/tmp/index.html |
| 11 | |
| 12 | - name: setup s1u interface config |
| 13 | shell: ./start_3gpp_int.sh eth1 {{ s1u_tag }} {{ s1u_ip }}/24 |
| 14 | |
| 15 | - name: setup s1mme interface config |
| 16 | shell: ./start_3gpp_int.sh eth2 {{ s1mme_tag }} {{ s1mme_ip }}/24 |
| 17 | |
| 18 | - name: setup rru interface config |
| 19 | shell: ./start_3gpp_int.sh eth3 {{ rru_tag }} {{ rru_ip }}/24 |