Dmitriy Rabotyagov e4a0d4edcf Update requirements.yml to be installable without force flag
Due to galaxy verification on versions, we can't install requirements
without --force when we set an FQCN name instead of git path.

This causes ansible-lint to fail with:
Non integer values in LooseVersion ('master')

Change intends to fix this and ensure requirements are more
easily installable.

Change-Id: Ia950023d3d747e9fff4c900b207ce7087c4e7314
2025-02-13 09:09:24 +01:00
2023-07-12 11:58:33 +00:00
2022-05-30 16:01:11 +02:00
2021-12-06 13:35:33 +02:00
2023-07-12 11:58:33 +00:00
2019-04-19 19:34:27 +00:00
2017-05-19 10:24:55 -05:00

Ansible systemd_service

This Ansible role that installs and configures systemd unit files and all of its corresponding services. This role requires the openstack-ansible-plugins repository to be available on your local system. The Ansible galaxy resolver will not retrieve this role for you. To get this role in place clone the plugins repository before installing this role.

# git clone https://github.com/openstack/openstack-ansible-plugins /etc/ansible/roles/plugins

Release notes for the project can be found at: https://docs.openstack.org/releasenotes/ansible-role-systemd_service

You can also use the ansible-galaxy command on the requirements.yml file.

# ansible-galaxy install -r requirements.yml

Example playbook
- name: Create a systemd unit file for ServiceX
  hosts: localhost
  become: true
  roles:
    - role: "systemd_service"
      systemd_services:
        # Normal Service
        - service_name: ServiceX
          execstarts:
            - /path/ServiceX --flag1

        # Timer Service (AKA CRON)
        - service_name: TimerServiceX
          execstarts:
            - /path/TimerServiceX --flag1
          timer:
            state: "started"
            options:
              OnBootSec: 30min
              OnUnitActiveSec: 1h
              Persistent: true
      tags:
        - servicex-init
Description
Ansible role to manage systemd services
Readme 2.3 MiB
Languages
Python 60%
Jinja 40%