openstack-ansible-os_designate/templates/designate-systemd-init.j2

35 lines
1.0 KiB
Django/Jinja

# {{ ansible_managed }}
[Unit]
Description=designate openstack service
After=syslog.target
After=network.target
[Service]
Type=simple
User={{ designate_system_user_name }}
Group={{ designate_system_group_name }}
{% if program_override is defined %}
ExecStart={{ program_override }} {{ program_config_options|default('') }} --log-file=/var/log/designate/{{ item.value.service_name }}.log
{% else %}
ExecStart={{ designate_bin }}/{{ item.value.service_name }} {{ program_config_options|default('') }} --log-file=/var/log/designate/{{ item.value.service_name }}.log
{% endif %}
# Give a reasonable amount of time for the server to start up/shut down
TimeoutSec=300
Restart=on-failure
RestartSec=150
# This creates a specific slice which all designate services will operate from
# The accounting options give us the ability to see resource usage through
# the `systemd-cgtop` command.
Slice=designate.slice
CPUAccounting=true
BlockIOAccounting=true
MemoryAccounting=false
TasksAccounting=true
[Install]
WantedBy=multi-user.target