aboutsummaryrefslogtreecommitdiffstats
path: root/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/install-osm.yml
blob: 5c12e333cb38c387187c24e67cb5c111c4260bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018 Ericsson AB 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: clone OSM devops repo and checkout version {{ osm_devops_version }}
  become_user: "{{ osm_install_user }}"
  become: yes
  git:
    repo: "{{ osm_devops_git_url }}"
    dest: "{{ osm_devops_clone_location }}"
    version: "{{ osm_devops_version }}"

- name: install OSM
  become_user: "{{ osm_install_user }}"
  become: yes
  command: "/bin/bash ./full_install_osm.sh --test -b {{ osm_devops_version }} --nolxd -y"
  args:
    chdir: "{{ osm_devops_clone_location }}/installers"
    creates: "/usr/bin/osm"

- name: create osmrc file
  copy:
    dest: "{{ osmrc_file_dest }}"
    content: |
      export OSM_HOSTNAME=127.0.0.1
      export OSM_OL005=True