This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via fad62aa9fc7acbcbd3a32ac3181812b767f26824 (commit) from ce09972dd5ba085d7c96bb582bd1042c85017559 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit fad62aa9fc7acbcbd3a32ac3181812b767f26824 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jul 28 19:53:42 2017 +0100
mstpd: Drop package
This has never worked too reliably and I cannot test it well. So we only support plain STP which is implemented in the kernel and no RSTP any more.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: mstpd/mstpd.nm | 60 --------------------------------------------- mstpd/svn-export.sh | 20 --------------- mstpd/systemd/mstpd.service | 10 -------- 3 files changed, 90 deletions(-) delete mode 100644 mstpd/mstpd.nm delete mode 100755 mstpd/svn-export.sh delete mode 100644 mstpd/systemd/mstpd.service
Difference in files: diff --git a/mstpd/mstpd.nm b/mstpd/mstpd.nm deleted file mode 100644 index c899d6f..0000000 --- a/mstpd/mstpd.nm +++ /dev/null @@ -1,60 +0,0 @@ -############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) - IPFire Development Team info@ipfire.org # -############################################################################### - -name = mstpd -version = 0.01 -svn_ver = 36 -release = 0.7-svn%{svn_ver}.2 -thisapp = %{name}-%{version}-svn%{svn_ver} - -groups = Networking/Tools -url = http://sourceforge.net/projects/mstpd/ -license = GPLv2+ -summary = The Multiple Spanning Tree Protocol Daemon. - -description - A daemon that implements the Multiple Spanning Tree Protocol - running upon the Linux ethernet bridge. -end - -# Tarballs are created as follows: -# ./svn-export.sh %{version} %{svn_ver} - -build - # Compile for release. - make_build_targets += MODE=release CC="gcc %{LDFLAGS}" - - install_cmds - rm -vf %{BUILDROOT}/sbin/bridge-stp - end -end - -packages - package %{name} - requires = network - - # Replace rstp. - provides += rstp=0.21-9 - obsoletes += rstp<0.21-9 - - script postin - /bin/systemctl daemon-reload >/dev/null 2>&1 || : - end - - script preun - /bin/systemctl --no-reload disable mstpd.service >/dev/null 2>&1 || : - /bin/systemctl stop mstpd.service >/dev/null 2>&1 || : - end - - script postup - /bin/systemctl daemon-reload >/dev/null 2>&1 || : - /bin/systemctl try-restart mstpd.service >/dev/null 2>&1 || : - end - end - - package %{name}-debuginfo - template DEBUGINFO - end -end diff --git a/mstpd/svn-export.sh b/mstpd/svn-export.sh deleted file mode 100755 index 662d3d3..0000000 --- a/mstpd/svn-export.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -version=${1} -revision=${2} - -if [ -z "${version}" ] || [ -z "${revision}" ]; then - echo "Usage ${0}: <version> <revision>" >&2 - exit 1 -fi - -export_dir=mstpd-${version}-svn${revision} -rm -rf ${export_dir} - -set -x - -svn export http://svn.code.sf.net/p/mstpd/code/trunk ${export_dir} -tar cfz mstpd-${version}-svn${revision}.tar.gz ${export_dir} -rm -rf ${export_dir} - -exit 0 diff --git a/mstpd/systemd/mstpd.service b/mstpd/systemd/mstpd.service deleted file mode 100644 index 95b0254..0000000 --- a/mstpd/systemd/mstpd.service +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Multiple Spanning Tree Protocol Daemon -Before=network.service - -[Service] -ExecStart=/sbin/mstpd -d -Restart=always - -[Install] -WantedBy=multi-user.target
hooks/post-receive -- IPFire 3.x development tree