Jesse Pretorius d38250005d Follow the new PTI for document build
For compliance with the Project Testing Interface as described in:
https://governance.openstack.org/tc/reference/project-testing-interface.html

For more details information, please refer to:
http://lists.openstack.org/pipermail/openstack-dev/2017-December/125710.html

In order to pass the requirements check, a new lower bound is set for the
'pyasn1' and 'requests' packages.

Change-Id: If44929dbe402c4249235a7fcb9226b97f20d0e43
2018-07-02 08:38:48 +01:00
2018-05-02 11:19:50 -05:00
2018-07-02 08:38:48 +01:00
2018-03-21 17:47:22 -05:00
2018-03-21 17:47:22 -05:00
2018-05-14 20:46:31 +02:00
2018-03-19 23:01:15 -05:00
2018-06-27 18:38:36 -05:00
2018-05-02 11:19:50 -05:00
2018-05-02 11:19:50 -05:00
2018-06-20 17:43:43 -04:00
2018-03-19 14:48:14 -05:00
2018-03-19 23:01:15 -05:00
2017-05-19 10:24:55 -05:00
2017-05-19 10:24:55 -05:00
2018-05-02 11:19:50 -05:00
2018-03-19 23:01:15 -05:00
2017-05-19 10:24:55 -05:00
2018-07-02 08:38:48 +01: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

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

# ansible-galaxy install -r ansible-role-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%