blob: 3ef5381538e5bb596ddd4761d29f1a8f2e6a3103 [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
- name: resolve sudo timeout
become: yes
shell: "echo 127.0.1.1 $(cat /etc/hostname) >> /etc/hosts"
- name: Copy templates
template:
src: "templates/{{ item }}.j2"
dest: "{{ source_path }}/{{ item }}"
with_items:
- vbfd.conf
- vbsm_cfg.txt
- name: Run make_certs.sh command
shell: "./make_certs.sh mme {{ realm }}"
args:
chdir: "{{ source_path }}"
- name: Kill running MME
shell: "killall -w {{ item }}"
ignore_errors: yes
with_items:
- tmux
- vb_acc
# vb_acc exits if it's not run with a TTY (?)
- name: Run MME
shell: tmux new -d 'while true; do ./vb_acc >> /tmp/vb_acc.output 2>&1; sleep 15; done'
args:
chdir: "{{ source_path }}"