Convert role to use a common systemd service role
This removes the systemd service templates and tasks from this role and leverages a common systemd service role instead. This change removes a lot of code duplication across all roles all without sacrificing features or functionality. The intention of this change is to ensure uniformity and reduce the maintenance burden on the community when sweeping changes are needed. The exterior role is built to be OSA compatible and may be pulled into tree should we deem it necessary. Change-Id: Icb7ca523cb19c560de5c84b0d60a06305029192c Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
parent
d0fe470d50
commit
8f1cb4dde5
@ -354,113 +354,141 @@ swift_object_expirer_init_overrides: {}
|
|||||||
swift_object_reconstructor_init_overrides: {}
|
swift_object_reconstructor_init_overrides: {}
|
||||||
swift_proxy_server_init_overrides: {}
|
swift_proxy_server_init_overrides: {}
|
||||||
|
|
||||||
|
# Default options applied to all swift service units
|
||||||
|
swift_service_defaults:
|
||||||
|
Service:
|
||||||
|
LimitNOFILE: "{{ swift_soft_open_file_limits }}:{{ swift_hard_open_file_limits }}"
|
||||||
|
Environment:
|
||||||
|
? "PYPY_GC_MIN={{ swift_pypy_gc_min }}"
|
||||||
|
? "PYPY_GC_MAX={{ swift_pypy_gc_max }}"
|
||||||
|
|
||||||
swift_services:
|
swift_services:
|
||||||
swift-account-replicator:
|
|
||||||
group: swift_acc
|
|
||||||
program_name: "swift-account-replicator"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/account-server/account-server-replicator.conf', '/etc/swift/account-server/account-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_account_replicator_init_overrides }}"
|
|
||||||
swift-account-replicator-server:
|
|
||||||
group: swift_acc
|
|
||||||
program_name: "swift-account-replicator-server"
|
|
||||||
program_binary: "swift-account-server"
|
|
||||||
program_config_options: "/etc/swift/account-server/account-server-replicator.conf"
|
|
||||||
service_en: "{{ swift_dedicated_replication | bool }}"
|
|
||||||
init_config_overrides: "{{ swift_account_replicator_server_init_overrides }}"
|
|
||||||
swift-account-server:
|
|
||||||
group: swift_acc
|
|
||||||
program_name: "swift-account-server"
|
|
||||||
program_config_options: "/etc/swift/account-server/account-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_account_server_init_overrides }}"
|
|
||||||
swift-account-auditor:
|
|
||||||
group: swift_acc
|
|
||||||
program_name: "swift-account-auditor"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/account-server/account-server-replicator.conf', '/etc/swift/account-server/account-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_account_auditor_init_overrides }}"
|
|
||||||
swift-account-reaper:
|
|
||||||
group: swift_acc
|
|
||||||
program_name: "swift-account-reaper"
|
|
||||||
program_config_options: "/etc/swift/account-server/account-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_account_reaper_init_overrides }}"
|
|
||||||
swift-container-replicator:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-replicator"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/container-server/container-server-replicator.conf', '/etc/swift/container-server/container-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_container_replicator_init_overrides }}"
|
|
||||||
swift-container-replicator-server:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-replicator-server"
|
|
||||||
program_binary: "swift-container-server"
|
|
||||||
program_config_options: "/etc/swift/container-server/container-server-replicator.conf"
|
|
||||||
service_en: "{{ swift_dedicated_replication | bool }}"
|
|
||||||
init_config_overrides: "{{ swift_container_replicator_server_init_overrides }}"
|
|
||||||
swift-container-server:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-server"
|
|
||||||
program_config_options: "/etc/swift/container-server/container-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_container_server_init_overrides }}"
|
|
||||||
swift-container-auditor:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-auditor"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/container-server/container-server-replicator.conf', '/etc/swift/container-server/container-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_container_auditor_init_overrides }}"
|
|
||||||
swift-container-sync:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-sync"
|
|
||||||
program_config_options: "/etc/swift/container-server/container-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_container_sync_init_overrides }}"
|
|
||||||
swift-container-updater:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-updater"
|
|
||||||
program_config_options: "/etc/swift/container-server/container-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_container_updater_init_overrides }}"
|
|
||||||
swift-container-reconciler:
|
|
||||||
group: swift_cont
|
|
||||||
program_name: "swift-container-reconciler"
|
|
||||||
program_config_options: "/etc/swift/container-server/container-reconciler.conf"
|
|
||||||
init_config_overrides: "{{ swift_container_reconciler_init_overrides }}"
|
|
||||||
swift-object-replicator:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-replicator"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_object_replicator_init_overrides }}"
|
|
||||||
swift-object-replicator-server:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-replicator-server"
|
|
||||||
program_binary: "swift-object-server"
|
|
||||||
program_config_options: "/etc/swift/object-server/object-server-replicator.conf"
|
|
||||||
service_en: "{{ swift_dedicated_replication | bool }}"
|
|
||||||
init_config_overrides: "{{ swift_object_replicator_server_init_overrides }}"
|
|
||||||
swift-object-server:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-server"
|
|
||||||
program_config_options: "/etc/swift/object-server/object-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_object_server_init_overrides }}"
|
|
||||||
swift-object-auditor:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-auditor"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_object_auditor_init_overrides }}"
|
|
||||||
swift-object-updater:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-updater"
|
|
||||||
program_config_options: "/etc/swift/object-server/object-server.conf"
|
|
||||||
init_config_overrides: "{{ swift_object_updater_init_overrides }}"
|
|
||||||
swift-object-expirer:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-expirer"
|
|
||||||
program_config_options: "/etc/swift/object-server/object-expirer.conf"
|
|
||||||
init_config_overrides: "{{ swift_object_expirer_init_overrides }}"
|
|
||||||
swift-object-reconstructor:
|
|
||||||
group: swift_obj
|
|
||||||
program_name: "swift-object-reconstructor"
|
|
||||||
program_config_options: "{{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
|
||||||
init_config_overrides: "{{ swift_object_reconstructor_init_overrides }}"
|
|
||||||
swift-proxy-server:
|
swift-proxy-server:
|
||||||
group: swift_proxy
|
group: swift_proxy
|
||||||
program_name: "swift-proxy-server"
|
service_name: "swift-proxy-server"
|
||||||
program_config_options: "/etc/swift/proxy-server/proxy-server.conf"
|
execstarts: "{{ swift_bin }}/swift-proxy-server /etc/swift/proxy-server/proxy-server.conf"
|
||||||
init_config_overrides: "{{ swift_proxy_server_init_overrides }}"
|
init_config_overrides: "{{ swift_proxy_server_init_overrides }}"
|
||||||
|
start_order: 1
|
||||||
|
swift-account-server:
|
||||||
|
group: swift_acc
|
||||||
|
service_name: "swift-account-server"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-account-server /etc/swift/account-server/account-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_account_server_init_overrides }}"
|
||||||
|
start_order: 2
|
||||||
|
swift-account-replicator-server:
|
||||||
|
group: swift_acc
|
||||||
|
service_name: "swift-account-replicator-server"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-account-server /etc/swift/account-server/account-server-replicator.conf"
|
||||||
|
service_en: "{{ swift_dedicated_replication | bool }}"
|
||||||
|
init_config_overrides: "{{ swift_account_replicator_server_init_overrides }}"
|
||||||
|
start_order: 3
|
||||||
|
swift-container-server:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: swift-container-server
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-server /etc/swift/container-server/container-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_container_server_init_overrides }}"
|
||||||
|
start_order: 4
|
||||||
|
swift-container-replicator-server:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-replicator-server"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-server /etc/swift/container-server/container-server-replicator.conf"
|
||||||
|
service_en: "{{ swift_dedicated_replication | bool }}"
|
||||||
|
init_config_overrides: "{{ swift_container_replicator_server_init_overrides }}"
|
||||||
|
start_order: 5
|
||||||
|
swift-object-server:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: swift-object-server
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-server /etc/swift/object-server/object-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_object_server_init_overrides }}"
|
||||||
|
start_order: 6
|
||||||
|
swift-object-replicator-server:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-replicator-server"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-replicator-server /etc/swift/object-server/object-server-replicator.conf"
|
||||||
|
service_en: "{{ swift_dedicated_replication | bool }}"
|
||||||
|
init_config_overrides: "{{ swift_object_replicator_server_init_overrides }}"
|
||||||
|
start_order: 7
|
||||||
|
|
||||||
|
swift-account-auditor:
|
||||||
|
group: swift_acc
|
||||||
|
service_name: swift-account-auditor
|
||||||
|
execstarts: "{{ swift_bin }}/swift-account-auditor {{ swift_dedicated_replication | ternary('/etc/swift/account-server/account-server-replicator.conf', '/etc/swift/account-server/account-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_account_auditor_init_overrides }}"
|
||||||
|
start_order: 8
|
||||||
|
swift-account-reaper:
|
||||||
|
group: swift_acc
|
||||||
|
service_name: swift-account-reaper
|
||||||
|
execstarts: "{{ swift_bin }}/swift-account-reaper /etc/swift/account-server/account-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_account_reaper_init_overrides }}"
|
||||||
|
start_order: 9
|
||||||
|
swift-account-replicator:
|
||||||
|
group: swift_acc
|
||||||
|
service_name: swift-account-replicator
|
||||||
|
execstarts: "{{ swift_bin }}/swift-account-replicator {{ swift_dedicated_replication | ternary('/etc/swift/account-server/account-server-replicator.conf', '/etc/swift/account-server/account-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_account_replicator_init_overrides }}"
|
||||||
|
start_order: 10
|
||||||
|
|
||||||
|
swift-container-auditor:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-auditor"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-auditor {{ swift_dedicated_replication | ternary('/etc/swift/container-server/container-server-replicator.conf', '/etc/swift/container-server/container-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_container_auditor_init_overrides }}"
|
||||||
|
start_order: 11
|
||||||
|
swift-container-reconciler:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-reconciler"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-reconciler /etc/swift/container-server/container-reconciler.conf"
|
||||||
|
init_config_overrides: "{{ swift_container_reconciler_init_overrides }}"
|
||||||
|
start_order: 12
|
||||||
|
swift-container-replicator:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-replicator"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-replicator {{ swift_dedicated_replication | ternary('/etc/swift/container-server/container-server-replicator.conf', '/etc/swift/container-server/container-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_container_replicator_init_overrides }}"
|
||||||
|
start_order: 13
|
||||||
|
swift-container-sync:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-sync"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-sync /etc/swift/container-server/container-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_container_sync_init_overrides }}"
|
||||||
|
start_order: 14
|
||||||
|
swift-container-updater:
|
||||||
|
group: swift_cont
|
||||||
|
service_name: "swift-container-updater"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-container-updater /etc/swift/container-server/container-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_container_updater_init_overrides }}"
|
||||||
|
start_order: 15
|
||||||
|
|
||||||
|
swift-object-auditor:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-auditor"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-auditor {{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_object_auditor_init_overrides }}"
|
||||||
|
start_order: 16
|
||||||
|
swift-object-expirer:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-expirer"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-expirer /etc/swift/object-server/object-expirer.conf"
|
||||||
|
init_config_overrides: "{{ swift_object_expirer_init_overrides }}"
|
||||||
|
start_order: 17
|
||||||
|
swift-object-reconstructor:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-reconstructor"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-reconstructor {{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_object_reconstructor_init_overrides }}"
|
||||||
|
start_order: 18
|
||||||
|
swift-object-replicator:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-replicator"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-replicator {{ swift_dedicated_replication | ternary('/etc/swift/object-server/object-server-replicator.conf', '/etc/swift/object-server/object-server.conf') }}"
|
||||||
|
init_config_overrides: "{{ swift_object_replicator_init_overrides }}"
|
||||||
|
start_order: 19
|
||||||
|
swift-object-updater:
|
||||||
|
group: swift_obj
|
||||||
|
service_name: "swift-object-updater"
|
||||||
|
execstarts: "{{ swift_bin }}/swift-object-updater /etc/swift/object-server/object-server.conf"
|
||||||
|
init_config_overrides: "{{ swift_object_updater_init_overrides }}"
|
||||||
|
start_order: 20
|
||||||
|
|
||||||
# Set to True to reset the clock on the last time a rebalance happened,
|
# Set to True to reset the clock on the last time a rebalance happened,
|
||||||
# circumventing the min_part_hours check.
|
# circumventing the min_part_hours check.
|
||||||
@ -480,8 +508,8 @@ swift_pypy_env: "/opt/pypy-runtime/{{ swift_pypy_version }}/bin/pypy"
|
|||||||
# Set the Garbage Collection (GC) options for pypy if you would like to tune these
|
# Set the Garbage Collection (GC) options for pypy if you would like to tune these
|
||||||
# More info on pypy garbage collection can be found here:
|
# More info on pypy garbage collection can be found here:
|
||||||
# http://doc.pypy.org/en/latest/gc_info.html
|
# http://doc.pypy.org/en/latest/gc_info.html
|
||||||
#swift_pypy_gc_min: "15M"
|
swift_pypy_gc_min: "15M"
|
||||||
#swift_pypy_gc_max: "1GB"
|
swift_pypy_gc_max: "1GB"
|
||||||
|
|
||||||
# This variable is used by the repo_build process to determine
|
# This variable is used by the repo_build process to determine
|
||||||
# which host group to check for members of before building the
|
# which host group to check for members of before building the
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
- name: Restart swift services
|
- name: Restart swift services
|
||||||
service:
|
service:
|
||||||
name: "{{ item.program_name }}"
|
name: "{{ item.service_name }}"
|
||||||
enabled: yes
|
enabled: yes
|
||||||
state: "restarted"
|
state: "restarted"
|
||||||
daemon_reload: yes
|
daemon_reload: yes
|
||||||
|
@ -72,7 +72,30 @@
|
|||||||
tags:
|
tags:
|
||||||
- swift-config
|
- swift-config
|
||||||
|
|
||||||
- include_tasks: swift_init_systemd.yml
|
- name: Run the systemd service role
|
||||||
|
include_role:
|
||||||
|
name: systemd_service
|
||||||
|
private: true
|
||||||
|
vars:
|
||||||
|
systemd_user_name: "{{ swift_system_user_name }}"
|
||||||
|
systemd_group_name: "{{ swift_system_group_name }}"
|
||||||
|
systemd_tempd_prefix: openstack
|
||||||
|
systemd_slice_name: swift
|
||||||
|
system_lock_path: /var/lock/swift
|
||||||
|
systemd_CPUAccounting: true
|
||||||
|
systemd_BlockIOAccounting: true
|
||||||
|
systemd_MemoryAccounting: true
|
||||||
|
systemd_TasksAccounting: true
|
||||||
|
systemd_services:
|
||||||
|
- service_name: "{{ service_var.service_name }}"
|
||||||
|
enabled: yes
|
||||||
|
state: started
|
||||||
|
execstarts: "{{ service_var.execstarts }}"
|
||||||
|
execreloads: "{{ service_var.execreloads | default([]) }}"
|
||||||
|
config_overrides: "{{ swift_service_defaults | combine(service_var.init_config_overrides) }}"
|
||||||
|
with_items: "{{ filtered_swift_services }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: service_var
|
||||||
tags:
|
tags:
|
||||||
- swift-config
|
- swift-config
|
||||||
|
|
||||||
|
@ -1,55 +0,0 @@
|
|||||||
---
|
|
||||||
# Copyright 2014, Rackspace US, Inc.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
- name: Create TEMP run dir
|
|
||||||
file:
|
|
||||||
path: "/var/run/{{ item.program_name }}"
|
|
||||||
state: directory
|
|
||||||
owner: "{{ swift_system_user_name }}"
|
|
||||||
group: "{{ swift_system_group_name }}"
|
|
||||||
mode: "02755"
|
|
||||||
with_items: "{{ filtered_swift_services }}"
|
|
||||||
|
|
||||||
- name: Create TEMP lock dir
|
|
||||||
file:
|
|
||||||
path: "/var/lock/{{ item.program_name }}"
|
|
||||||
state: directory
|
|
||||||
owner: "{{ swift_system_user_name }}"
|
|
||||||
group: "{{ swift_system_group_name }}"
|
|
||||||
mode: "02755"
|
|
||||||
with_items: "{{ filtered_swift_services }}"
|
|
||||||
|
|
||||||
- name: Create tmpfiles.d entry
|
|
||||||
template:
|
|
||||||
src: "swift-systemd-tmpfiles.j2"
|
|
||||||
dest: "/etc/tmpfiles.d/openstack-{{ item.program_name }}.conf"
|
|
||||||
mode: "0644"
|
|
||||||
owner: "root"
|
|
||||||
group: "root"
|
|
||||||
with_items: "{{ filtered_swift_services }}"
|
|
||||||
|
|
||||||
- name: Place the systemd init script
|
|
||||||
config_template:
|
|
||||||
src: "swift-systemd-init.j2"
|
|
||||||
dest: "/etc/systemd/system/{{ item.program_name }}.service"
|
|
||||||
mode: "0644"
|
|
||||||
owner: "root"
|
|
||||||
group: "root"
|
|
||||||
config_overrides: "{{ item.init_config_overrides }}"
|
|
||||||
config_type: "ini"
|
|
||||||
with_items: "{{ filtered_swift_services }}"
|
|
||||||
notify:
|
|
||||||
- Restart swift services
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
|||||||
# {{ ansible_managed }}
|
|
||||||
[Unit]
|
|
||||||
Description=swift openstack service
|
|
||||||
After=syslog.target
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User={{ swift_system_user_name }}
|
|
||||||
Group={{ swift_system_group_name }}
|
|
||||||
LimitNOFILE={{ swift_soft_open_file_limits }}:{{ swift_hard_open_file_limits }}
|
|
||||||
|
|
||||||
{% if swift_pypy_enabled %}
|
|
||||||
{% if swift_pypy_gc_min is defined %}
|
|
||||||
Environment=PYPY_GC_MIN={{ swift_pypy_gc_min }}
|
|
||||||
{% endif %}
|
|
||||||
{% if swift_pypy_gc_max is defined %}
|
|
||||||
Environment=PYPY_GC_MAX={{ swift_pypy_gc_max }}
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
{% if item.program_override is defined %}
|
|
||||||
ExecStart={{ item.program_override }} {{ item.program_config_options|default('') }}
|
|
||||||
{% else %}
|
|
||||||
ExecStart={{ swift_bin }}/{{ item.program_binary | default(item.program_name) }} {{ item.program_config_options|default('') }}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
# Give a reasonable amount of time for the server to start up/shut down
|
|
||||||
TimeoutSec=120
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=2
|
|
||||||
|
|
||||||
# This creates a specific slice which all services will operate from
|
|
||||||
# The accounting options give us the ability to see resource usage through
|
|
||||||
# the `systemd-cgtop` command.
|
|
||||||
Slice=swift.slice
|
|
||||||
CPUAccounting=true
|
|
||||||
BlockIOAccounting=true
|
|
||||||
MemoryAccounting=false
|
|
||||||
TasksAccounting=true
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
@ -1,4 +0,0 @@
|
|||||||
# {{ ansible_managed }}
|
|
||||||
|
|
||||||
D /var/lock/{{ item.program_binary | default(item.program_name) }} 2755 {{ swift_system_user_name }} {{ swift_system_group_name }}
|
|
||||||
D /var/run/{{ item.program_binary | default(item.program_name) }} 2755 {{ swift_system_user_name }} {{ swift_system_group_name }}
|
|
@ -23,4 +23,4 @@ filtered_swift_services: |-
|
|||||||
{% set _ = services.append(value) %}
|
{% set _ = services.append(value) %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{{ services }}
|
{{ services | sort(attribute='start_order') }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user