openstack-ansible-os_magnum/templates/magnum-systemd-init.j2

36 lines
971 B
Django/Jinja

# {{ ansible_managed }}
[Unit]
Description=magnum openstack service
After=syslog.target
After=network.target
[Service]
Type=simple
EnvironmentFile=/etc/environment
User={{ system_user }}
Group={{ system_group }}
{% if program_override is defined %}
ExecStart={{ program_override }} {{ program_config_options|default('') }} --log-file=/var/log/magnum/{{ program_name }}.log
{% else %}
ExecStart={{ magnum_bin }}/{{ program_name }} {{ program_config_options|default('') }} --log-file=/var/log/magnum/{{ program_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 will operate from
# The accounting options give us the ability to see resource usage through
# the `systemd-cgtop` command.
Slice=magnum.slice
CPUAccounting=true
BlockIOAccounting=true
MemoryAccounting=false
TasksAccounting=true
[Install]
WantedBy=multi-user.target