diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-03-01 01:52:40 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-03-01 19:12:22 +0100 |
commit | 54046401ad1ce188f1d6cd6099c7ee75e09c7328 (patch) | |
tree | 8b979684aa4ed418c967b59fea46fd1c0b8be6a6 /debian | |
parent | BGP: Unnumbered peering in a VRF (diff) | |
download | frr-54046401ad1ce188f1d6cd6099c7ee75e09c7328.tar.xz frr-54046401ad1ce188f1d6cd6099c7ee75e09c7328.zip |
debian: Remove some unnecesary files from debian directory.
The daemons file is no longer needed as well as the debian.conf
file. They have been subsumed by the systemd initialization
methodology.
Ticket: CM-9581
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/my/daemons | 30 | ||||
-rw-r--r-- | debian/my/debian.conf | 23 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 0 insertions, 55 deletions
diff --git a/debian/my/daemons b/debian/my/daemons deleted file mode 100644 index 7df77968a..000000000 --- a/debian/my/daemons +++ /dev/null @@ -1,30 +0,0 @@ -# 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 diff --git a/debian/my/debian.conf b/debian/my/debian.conf deleted file mode 100644 index c600ec58d..000000000 --- a/debian/my/debian.conf +++ /dev/null @@ -1,23 +0,0 @@ -# -# If this option is set the /etc/init.d/quagga script automatically loads -# the config via "vtysh -b" when the servers are started. -# Check /etc/pam.d/quagga if you intend to use "vtysh"! -# -vtysh_enable=yes -zebra_options=" --daemon -A 127.0.0.1" -bgpd_options=" --daemon -A 127.0.0.1" -ospfd_options=" --daemon -A 127.0.0.1" -ospf6d_options=" --daemon -A ::1" -ripd_options=" --daemon -A 127.0.0.1" -ripngd_options=" --daemon -A ::1" -isisd_options=" --daemon -A 127.0.0.1" -# -# Please note that watchquagga_options is an array and not a string so that -# quotes can be used. -# -# The list of daemons to watch is automatically generated by the init script -# from daemons.conf and appended to the watchquagga_options. -# Example: -# watchquagga_options=("-Adz" "-r" '/sbin/service %s restart' -s '/sbin/service %s start' -k '/sbin/service %s stop') -watchquagga_enable=yes -watchquagga_options=(--daemon) diff --git a/debian/rules b/debian/rules index f8fc2fa4d..90c8574e8 100755 --- a/debian/rules +++ b/debian/rules @@ -101,8 +101,6 @@ override_dh_auto_install: # install config files mkdir -p debian/tmp/etc/quagga/ - cp debian/my/debian.conf debian/tmp/etc/quagga/ - cp debian/my/daemons debian/tmp/etc/quagga/ perl -pi -e 's#^!log file #!log file /var/log/quagga/#' debian/tmp/usr/share/doc/quagga/examples/*sample* # installing the Quagga specific SNMP MIB |