Ansible role to manage systemd services
Go to file
Dmitriy Rabotyagov 476d4a01d3 Drop static content from html-docs
Change-Id: I8c2dffee3a295c692079ec00a1f33f620b40fab8
2019-11-14 19:36:18 +02:00
defaults Require network-online insetad of network target 2019-05-03 10:20:08 -06:00
doc PDF Documentation Build tox target 2019-10-17 15:36:07 +00:00
examples Add tests to the service role 2018-03-21 17:47:22 -05:00
handlers Build out the PrivateNetwork function for services 2019-02-09 04:06:44 +00:00
html-docs Drop static content from html-docs 2019-11-14 19:36:18 +02:00
meta Add integrated coverage 2019-05-21 16:43:25 +02:00
releasenotes Update master for stable/train 2019-10-22 18:52:34 +00:00
tasks Build out the PrivateNetwork function for services 2019-02-09 04:06:44 +00:00
templates Build out the PrivateNetwork function for services 2019-02-09 04:06:44 +00:00
tests Build out the PrivateNetwork function for services 2019-02-09 04:06:44 +00:00
zuul.d Add integrated coverage 2019-05-21 16:43:25 +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 Replace Chinese punctuation with English punctuation 2018-10-29 20:09:54 +08: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 2019-07-20 09:43:17 +00:00
ansible-role-requirements.yaml updated things so this role is usable 2018-03-08 17:54:13 -06:00
bindep.txt Updated from OpenStack Ansible Tests 2019-05-09 11:36:32 +00:00
manual-test.rc Initial Commit 2017-05-19 10:24:55 -05:00
run_tests.sh Updated from OpenStack Ansible Tests 2019-07-18 22:21:38 +00:00
setup.cfg Update home-page 2019-01-12 09:50:17 +00:00
setup.py Initial Commit 2017-05-19 10:24:55 -05:00
tox.ini PDF Documentation Build tox target 2019-10-17 15:36:07 +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