summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch
diff options
context:
space:
mode:
authorFabio Berton <fabio.berton@ossystems.com.br>2017-09-26 15:48:22 -0300
committerJoe MacDonald <joe_macdonald@mentor.com>2017-10-11 16:22:49 -0400
commit68443bd22e48782a94db7ce6c3d6cd40f42c9c5a (patch)
tree4156cbdb25927fbbd7333f505296a56a9b89abc7 /meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch
parent960d570d983865bb8e7d48a98776a1707ecf8fa8 (diff)
downloadmeta-openembedded-68443bd22e48782a94db7ce6c3d6cd40f42c9c5a.tar.gz
lldpd: Update to version 0.9.8
- Remove json packageconfig. See commit: https://github.com/vincentbernat/lldpd/commit/06987a24ce053cbb57f8853bbf544bc7c067c8aa - Add patch to use mkdir from /bin/mkdir in systemd service. - Update from lldpd (0.9.8) * Changes: + "Station" capability is only set if no other bit is set. + Use ethtool to get permanent address for bonds and teams. This might provide different results than the previous method. Some devices may still use the previous method. + Don't run ethtool as root. Kernels older than 2.6.19 won't get link information anymore. + Add "configure system hostname ." option to not use a FQDN for system name. + Add "-f json0" to provide a more regular/machine-parsable output to JSON output, even when not compiled with --enable-json0. * Fixes: + Handle team interfaces like a bond. Real MAC address cannot be retrieved yet. - Updates from lldpd (0.9.7) * Changes: + Attach remote TTL to port instead of chassis. + JSON support is now built-in and unconditionally enabled. Use --enable-json0 to keep the pre-0.9.2 json-c format. + When logging to syslog and daemonizing, don't log to stderr. + vxlan interfaces are now ignored as they are multi-point interfaces. + Maximum number of neighbors for an interface is increased from 4 to 32. Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch')
-rw-r--r--meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch b/meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch
new file mode 100644
index 000000000..4876e1794
--- /dev/null
+++ b/meta-networking/recipes-daemons/lldpd/files/src-daemon-lldpd.service.in-Use-fixed-path-for-mkdir.patch
@@ -0,0 +1,32 @@
1From f9f3e4dd31588cce5f655730da7b5c3f56a9bdc1 Mon Sep 17 00:00:00 2001
2From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Tue, 26 Sep 2017 09:19:51 -0300
4Subject: [PATCH] src/daemon/lldpd.service.in: Use fixed path for mkdir command
5Organization: O.S. Systems Software LTDA.
6
7@mkdir_p@ is expanded to host tools path ../build/tmp/hosttools/mkdir that
8doesn't exist on target. Remove @mkdir_p@ and use /bin/mkdir -p to
9create /var/run/lldpd directory.
10
11Upstream-Status: Inappropriate [configuration]
12
13Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
14---
15 src/daemon/lldpd.service.in | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/src/daemon/lldpd.service.in b/src/daemon/lldpd.service.in
19index fdb7338..4291830 100644
20--- a/src/daemon/lldpd.service.in
21+++ b/src/daemon/lldpd.service.in
22@@ -9,7 +9,7 @@ Type=notify
23 NotifyAccess=main
24 EnvironmentFile=-/etc/default/lldpd
25 EnvironmentFile=-/etc/sysconfig/lldpd
26-ExecStartPre=@mkdir_p@ @PRIVSEP_CHROOT@
27+ExecStartPre=/bin/mkdir -p @PRIVSEP_CHROOT@
28 ExecStart=@sbindir@/lldpd $DAEMON_ARGS $LLDPD_OPTIONS
29 Restart=on-failure
30 PrivateTmp=yes
31--
322.14.2