Skip to content

Commit 1c07436

Browse files
taoyl-mslguohan
authored andcommitted
Add daemon file which was missing in docker-fpm (#229)
1 parent 4ce17b1 commit 1c07436

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

dockers/docker-fpm/Dockerfile.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ RUN rm -rf /debs
2424

2525
COPY ["*.j2", "/etc/swss/bgp/"]
2626
COPY ["start.sh", "config.sh", "/usr/bin/"]
27+
COPY ["daemons", "/etc/quagga/"]
2728

2829
ENTRYPOINT /usr/bin/config.sh \
2930
&& /usr/bin/start.sh \

dockers/docker-fpm/daemons

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This file tells the quagga package which daemons to start.
2+
#
3+
# Entries are in the format: <daemon>=(yes|no|priority)
4+
# 0, "no" = disabled
5+
# 1, "yes" = highest priority
6+
# 2 .. 10 = lower priorities
7+
# Read /usr/share/doc/quagga/README.Debian for details.
8+
#
9+
# Sample configurations for these daemons can be found in
10+
# /usr/share/doc/quagga/examples/.
11+
#
12+
# ATTENTION:
13+
#
14+
# When activation a daemon at the first time, a config file, even if it is
15+
# empty, has to be present *and* be owned by the user and group "quagga", else
16+
# the daemon will not be started by /etc/init.d/quagga. The permissions should
17+
# be u=rw,g=r,o=.
18+
# When using "vtysh" such a config file is also needed. It should be owned by
19+
# group "quaggavty" and set to ug=rw,o= though. Check /etc/pam.d/quagga, too.
20+
#
21+
# The watchquagga daemon is always started. Per default in monitoring-only but
22+
# that can be changed via /etc/quagga/debian.conf.
23+
#
24+
zebra=yes
25+
bgpd=yes
26+
ospfd=no
27+
ospf6d=no
28+
ripd=no
29+
ripngd=no
30+
isisd=no
31+
babeld=no

0 commit comments

Comments
 (0)