blob: 95366c6c2dbe0f2a88a2f9c9bb753a8c5455d9a0 [file] [log] [blame]
Zack Williams70996442020-10-01 22:09:49 -07001---
2# timesheets tasks/Debian.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6#
7
8- name: Install Timesheets Prereqs
9 apt:
10 name:
11 - "git"
12 state: "present"
13 update_cache: true
14 cache_valid_time: 3600
15
Zack Williams952bc002020-10-04 09:45:59 -070016- name: Create environment config for timesheetsdb service
17 template:
18 src: "default.timesheetsdb.j2"
19 dest: "/etc/default/timesheetsdb"
20 owner: "root"
21 group: "root"
22 mode: "0640"
23 notify:
24 - restart-timesheetsdb
Zack Williams70996442020-10-01 22:09:49 -070025
26- name: Create systemd service unit files for timesheetsdb service
27 template:
28 src: "{{ item }}.j2"
29 dest: "/etc/systemd/system/{{ item }}"
30 owner: "root"
31 group: "root"
32 mode: "0644"
33 with_items:
34 - "timesheetsdb.service"
Zack Williams952bc002020-10-04 09:45:59 -070035 notify:
36 - start-timesheetsdb
37 - restart-timesheetsdb