blob: 23ccfa8da32ca010d8d71221a0d0432e14e5d4b9 [file] [log] [blame]
Andy Bavier03905bc2018-01-17 15:49:00 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15---
16
Woojoong Kimcc12aeb2018-02-16 11:53:46 -080017- name: resolve sudo timeout
18 become: yes
19 shell: "echo 127.0.1.1 $(cat /etc/hostname) >> /etc/hosts"
20
Andy Bavier03905bc2018-01-17 15:49:00 -070021- name: Copy templates
22 template:
23 src: "templates/{{ item }}.j2"
24 dest: "{{ source_path }}/conf/{{ item }}"
25 with_items:
26 - hss.conf
27 - hss.json
28
29- name: Run make_certs.sh command
Woojoong Kim96a7ca52018-02-13 19:00:43 -080030 shell: "{{ source_path }}/bin/make_certs.sh hss {{ realm }}"
Andy Bavier03905bc2018-01-17 15:49:00 -070031 args:
Woojoong Kim96a7ca52018-02-13 19:00:43 -080032 chdir: "{{ source_path }}/conf"
Andy Bavier03905bc2018-01-17 15:49:00 -070033
Andy Bavierfd8196d2018-01-20 10:44:53 -070034- name: Kill running HSS
35 shell: "killall -w hss"
36 ignore_errors: yes
37
Andy Bavier03905bc2018-01-17 15:49:00 -070038- name: Run HSS
Andy Bavierfd8196d2018-01-20 10:44:53 -070039 shell: "nohup bin/hss -j conf/hss.json > /tmp/hss.output &"
Andy Bavier03905bc2018-01-17 15:49:00 -070040 args:
41 chdir: "{{ source_path }}"