Ansible role to manage systemd services
Go to file
Zuul a49b5544f1 Merge "Use config_template as a collection" 2021-12-02 10:28:58 +00:00
defaults Use slice name for lock/run by default 2021-11-30 12:39:38 +00:00
doc Fix linter errors 2020-10-02 07:37:01 +01:00
examples Add tests to the service role 2018-03-21 17:47:22 -05:00
handlers Revert "Build out the PrivateNetwork function for services" 2020-06-10 08:18:26 +01:00
html-docs Drop static content from html-docs 2019-11-14 19:36:18 +02:00
meta Remove references to unsupported operating systems 2021-03-16 08:59:57 +00:00
releasenotes Deprecate systemd_lock_path variable 2021-11-04 20:41:24 +02:00
tasks Merge "Use config_template as a collection" 2021-12-02 10:28:58 +00:00
templates Use slice name for lock/run by default 2021-11-30 12:39:38 +00:00
tests Deprecate systemd_lock_path variable 2021-11-04 20:41:24 +02:00
zuul.d [reno] Stop publishing release notes 2021-01-22 18:23:13 +02:00
.gitignore Updated from OpenStack Ansible Tests 2019-08-20 03:07:50 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:34:27 +00:00
CONTRIBUTING.rst [ussuri][goal] Update contributor documentation 2020-05-13 00:04:49 +03:00
LICENSE Initial Commit 2017-05-19 10:24:55 -05:00
README.md Add release note link in README 2018-06-29 14:58:07 +08:00
Vagrantfile Updated from OpenStack Ansible Tests 2021-03-22 08:56:16 +00:00
ansible-role-requirements.yaml Replace git.openstack.org with opendev.org 2019-11-14 19:31:46 +02:00
bindep.txt Updated from OpenStack Ansible Tests 2021-03-12 22:23:54 +00:00
manual-test.rc Initial Commit 2017-05-19 10:24:55 -05:00
run_tests.sh Updated from OpenStack Ansible Tests 2021-03-12 22:23:54 +00:00
setup.cfg Cleanup py27 support 2020-04-25 16:04:09 +02:00
setup.py Cleanup py27 support 2020-04-25 16:04:09 +02:00
tox.ini Use upper-constraints for all tox environments 2020-12-07 16:53:25 +00:00

README.md

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 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