Andy Bavier | 03905bc | 2018-01-17 15:49:00 -0700 | [diff] [blame] | 1 | # 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 | |
| 17 | - name: Copy templates |
| 18 | template: |
| 19 | src: "templates/{{ item }}.j2" |
| 20 | dest: "{{ source_path }}/conf/{{ item }}" |
| 21 | with_items: |
| 22 | - hss.conf |
| 23 | - hss.json |
| 24 | |
| 25 | - name: Run make_certs.sh command |
| 26 | shell: "bin/make_certs.sh hss {{ realm }}" |
| 27 | args: |
| 28 | chdir: "{{ source_path }}" |
| 29 | |
Andy Bavier | fd8196d | 2018-01-20 10:44:53 -0700 | [diff] [blame] | 30 | - name: Kill running HSS |
| 31 | shell: "killall -w hss" |
| 32 | ignore_errors: yes |
| 33 | |
Andy Bavier | 03905bc | 2018-01-17 15:49:00 -0700 | [diff] [blame] | 34 | - name: Run HSS |
Andy Bavier | fd8196d | 2018-01-20 10:44:53 -0700 | [diff] [blame] | 35 | shell: "nohup bin/hss -j conf/hss.json > /tmp/hss.output &" |
Andy Bavier | 03905bc | 2018-01-17 15:49:00 -0700 | [diff] [blame] | 36 | args: |
| 37 | chdir: "{{ source_path }}" |