Skip to content
Snippets Groups Projects
Commit 71397716 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Remove config-external for rsyslog"

parents a9eee171 f098e766
No related branches found
No related tags found
No related merge requests found
---
- name: Starting log_data container
docker:
docker_api_version: "{{ docker_api_version }}"
......@@ -31,6 +30,7 @@
username: "{{ docker_registry_username }}"
password: "{{ docker_registry_password }}"
insecure_registry: "{{ docker_insecure_registry }}"
privileged: True
name: rsyslog
image: "{{ rsyslog_image_full }}"
volumes_from:
......
{
"command": "/usr/sbin/rsyslogd -n",
"config_files": []
"config_files": [
{
"source": "/opt/kolla/config_files/rsyslog.conf",
"dest": "/etc/rsyslog.conf",
"owner": "root",
"perm": "0644"
}
]
}
......@@ -12,7 +12,6 @@ RUN apt-get install -y --no-install-recommends \
&& apt-get clean
{% endif %}
COPY config-external.sh /opt/kolla/
COPY start.sh /
CMD ["/start.sh"]
#!/bin/bash
if [[ -f "/dev/log" ]]; then
rm "/dev/log"
fi
SOURCE="/opt/kolla/rsyslog/rsyslog.conf"
TARGET="/etc/rsyslog.conf"
OWNER="root"
if [[ -f "$SOURCE" ]]; then
rm $TARGET
cp $SOURCE $TARGET
chown ${OWNER}: $TARGET
chmod 0644 $TARGET
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment