summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/roles/run-functest/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'xci/playbooks/roles/run-functest/tasks/main.yml')
-rw-r--r--xci/playbooks/roles/run-functest/tasks/main.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/xci/playbooks/roles/run-functest/tasks/main.yml b/xci/playbooks/roles/run-functest/tasks/main.yml
new file mode 100644
index 00000000..8ca2b7ba
--- /dev/null
+++ b/xci/playbooks/roles/run-functest/tasks/main.yml
@@ -0,0 +1,32 @@
+---
+# SPDX-license-identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2017 SUSE Linux GmbH
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+- name: check if the gateway was already set
+ shell: "ip a | grep {{ gateway_ip }}"
+ register: gateway_ip_result
+ ignore_errors: True
+
+- name: add public network gateway
+ command: "ip addr add {{ gateway_ip_mask }} brd {{ broadcast_ip }} dev {{ gateway_interface }}"
+ when: gateway_ip_result|failed
+
+- name: prepare environment file for functest
+ template:
+ src: env.j2
+ dest: /root/env
+ mode: 0755
+
+- name: prepare the script to create networks and run functest
+ template:
+ src: run-functest.sh.j2
+ dest: /root/run-functest.sh
+ mode: 0755
+
+- name: execute the script
+ shell: "/root/run-functest.sh"