aboutsummaryrefslogtreecommitdiffstats
path: root/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml
diff options
context:
space:
mode:
Diffstat (limited to 'scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml')
-rw-r--r--scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml b/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml
new file mode 100644
index 00000000..4f6b990a
--- /dev/null
+++ b/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml
@@ -0,0 +1,30 @@
+---
+# SPDX-license-identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2018 Venkata Harshavardhan Reddy Allu and others.
+# 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: get OSM installer {{ osm_release_version }}
+ become_user: "{{ osm_install_user }}"
+ become: yes
+ get_url:
+ url: "https://osm-download.etsi.org/ftp/{{ osm_release_version }}/install_osm.sh"
+ dest: "/home/{{ osm_install_user }}/install_osm.sh"
+ mode: u+x
+
+- name: install OSM
+ become_user: "{{ osm_install_user }}"
+ become: yes
+ command: "/bin/bash ./install_osm.sh --nolxd -y "
+ args:
+ chdir: "/home/{{ osm_install_user }}"
+ creates: "/usr/bin/osm"
+
+- name: Create osmrc file
+ copy:
+ src: osmrc
+ dest: "{{ osmrc_file_dest }}"