16341f1eec
Configure swift to use rsyslog container as logging mechanism Change-Id: Idef2904976651e8f5bc36d406259d9dc487949dd Implements: bp logging-container
27 lines
617 B
Django/Jinja
27 lines
617 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_account_server_port }}
|
|
devices = {{ swift_devices_mount_point }}
|
|
mount_check = false
|
|
log_name = {{ service_name }}
|
|
log_facility = LOG_LOCAL0
|
|
log_level = warning
|
|
|
|
[pipeline:main]
|
|
pipeline = account-server
|
|
|
|
[app:account-server]
|
|
use = egg:swift#account
|
|
|
|
{% if service_name == 'swift-account-auditor' %}
|
|
[account-auditor]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-replicator' %}
|
|
[account-replicator]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-reaper' %}
|
|
[account-reaper]
|
|
{% endif %}
|