File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ RUN rm -rf /debs
24
24
25
25
COPY ["*.j2", "/etc/swss/bgp/"]
26
26
COPY ["start.sh", "config.sh", "/usr/bin/"]
27
+ COPY ["daemons", "/etc/quagga/"]
27
28
28
29
ENTRYPOINT /usr/bin/config.sh \
29
30
&& /usr/bin/start.sh \
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments