--- | |
# timesheets tasks/Debian.yml | |
# | |
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
- name: Install Timesheets Prereqs | |
apt: | |
name: | |
- "git" | |
state: "present" | |
update_cache: true | |
cache_valid_time: 3600 | |
- name: Create systemd service unit files for timesheetsdb service | |
template: | |
src: "{{ item }}.j2" | |
dest: "/etc/systemd/system/{{ item }}" | |
owner: "root" | |
group: "root" | |
mode: "0644" | |
with_items: | |
- "timesheetsdb.service" |