diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-04-28 02:03:35 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-02 14:23:05 +0200 |
commit | 9e19d39a76b69424cfdceba28e40bbde3c0e0a6f (patch) | |
tree | efa6219fc44b0f15807480b9d79446cc4ebb112b /cumulus | |
parent | Merge branch 'cmaster' of ssh://stash.cumulusnetworks.com:7999/quag/quagga in... (diff) | |
download | frr-9e19d39a76b69424cfdceba28e40bbde3c0e0a6f.tar.xz frr-9e19d39a76b69424cfdceba28e40bbde3c0e0a6f.zip |
debian: Debian fixups
This commit does two things:
1) Fixes package name to have ...+cl3u1
2) Allows the build to determine if we are building
a debian package on a init.d or systemd style system
and to do the right thing.
3) Fixed quagga service file naming
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Dave Olson <olson@cumulusnetworks.com>
Reviewed-by: Don Slice <dslice@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'cumulus')
-rw-r--r-- | cumulus/etc/quagga/daemons | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/cumulus/etc/quagga/daemons b/cumulus/etc/quagga/daemons new file mode 100644 index 000000000..dd0e23914 --- /dev/null +++ b/cumulus/etc/quagga/daemons @@ -0,0 +1,31 @@ +# This file tells the quagga package which daemons to start. +# +# Entries are in the format: <daemon>=(yes|no|priority) +# 0, "no" = disabled +# 1, "yes" = highest priority +# 2 .. 10 = lower priorities +# Read /usr/share/doc/quagga/README.Debian for details. +# +# Sample configurations for these daemons can be found in +# /usr/share/doc/quagga/examples/. +# +# ATTENTION: +# +# When activation a daemon at the first time, a config file, even if it is +# empty, has to be present *and* be owned by the user and group "quagga", else +# the daemon will not be started by /etc/init.d/quagga. The permissions should +# be u=rw,g=r,o=. +# When using "vtysh" such a config file is also needed. It should be owned by +# group "quaggavty" and set to ug=rw,o= though. Check /etc/pam.d/quagga, too. +# +# The watchquagga daemon is always started. Per default in monitoring-only but +# that can be changed via /etc/quagga/debian.conf. +# +zebra=no +bgpd=no +ospfd=no +ospf6d=no +ripd=no +ripngd=no +isisd=no + |