File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
docker/neutron/neutron-dhcp-agent Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
12
12
13
13
{{ macros.install_packages(neutron_dhcp_agent_packages | customizable("packages")) }}
14
14
15
+ COPY extend_start.sh /usr/local/bin/kolla_extend_start
16
+
15
17
{% block neutron_dhcp_agent_footer %}{% endblock %}
16
18
{% block footer %}{% endblock %}
17
19
Original file line number Diff line number Diff line change
1
+ if [[ ! -d " /var/log/kolla/neutron" ]]; then
2
+ mkdir -p /var/log/kolla/neutron
3
+ fi
4
+ if [[ ! -f " /var/log/kolla/neutron/dnsmasq.log" ]]; then
5
+ touch /var/log/kolla/neutron/dnsmasq.log
6
+ chown neutron:kolla /var/log/kolla/neutron/dnsmasq.log
7
+ fi
8
+
9
+ . /usr/local/bin/kolla_neutron_extend_start
You can’t perform that action at this time.
0 commit comments