]> ## LLDP for UNRAID ###2024.04.15 - fix: only propagate LLDP information on physical network interfaces (eth*) instead of all network interfaces ###2024.03.11 - fix: moved around some statements in the installation and removal processes (no changes to packages) ###2024.02.26 - release note: welcome to the first version of the LLDP package. - release note: please report any problems in the respective support topic. echo "Making sure all existing LLDP services are stopped (before install/upgrade)..." killall lldpd echo "" exit 0 &pkgURL;/lldpd-1.0.18-x86_64-1.txz 8a990c707220e8aa2970dc11f2321223 &gitURL;/archive/&plgNAME;.txz &plgMD5; CONFIG=&plgPATH;/&name;.cfg # reading our configuration echo "Reading LLDP configuration..." if [ -e "$CONFIG" ]; then source "$CONFIG" fi echo "Determining if LLDP service should be started..." if [ "$SERVICE" == "enable" ]; then echo "Starting LLDP service..." /etc/rc.d/rc.lldpd start fi echo "" echo "-------------------------------------------------------------" echo " LLDP for UNRAID (&version;) has been installed." echo " Copyright 2023 - &author;" echo "-------------------------------------------------------------" echo "" echo "Making sure all existing LLDP instances are stopped (before uninstall)..." killall lldpd removepkg &plgPATH;/*.txz rm -rf &plgPATH; rm -rf &emhttp; echo "" echo "-----------------------------------------------------------" echo " LLDP for UNRAID (&version;) has been removed." echo " Copyright 2023 - &author;" echo "-----------------------------------------------------------" echo ""