pimd: Remove unneeded shell scripts

Remove some unneeded shell scripts.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-06-17 18:47:48 -04:00
parent 34be90949f
commit 515b39d704
9 changed files with 0 additions and 151 deletions

View File

@ -1,27 +0,0 @@
#! /bin/bash
#
# Github Developer Git Checkout
#
# Delete remote branch qpimd: git push origin :qpimd
# (git push origin :refs/heads/branch_to_delete)
# Delete remote tag v0.139: git push origin :v0.139
# (git push origin :refs/tags/tag_to_delete)
# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
# Rename branch qpimd to pim: git branch -m qpimd pim
# Commit changes: git commit -a
# Send changes: git push --all
#
# Recipe to re-sync with Quagga repository:
# git clone https://github.com/udhos/qpimd quagga
# cd quagga
# git checkout master
# git pull http://git.sv.gnu.org/r/quagga.git master
# git checkout -b pim origin/pim
# git rebase master pim
# # Test, then push back into Github repository:
# git push origin :pim ;# delete remote branch pim
# git push --all
#
# $QuaggaId: $Format:%an, %ai, %h$ $
git clone https://github.com/udhos/qpimd

View File

@ -1,27 +0,0 @@
#! /bin/bash
#
# Savannah Developer Git Checkout
#
# Delete remote branch qpimd: git push origin :qpimd
# (git push origin :refs/heads/branch_to_delete)
# Delete remote tag v0.139: git push origin :v0.139
# (git push origin :refs/tags/tag_to_delete)
# Create remote-tracking branch: git checkout -b pim0.142 origin/pim0.142
# Rename branch qpimd to pim: git branch -m qpimd pim
# Commit changes: git commit -a
# Send changes: git push --all
#
# Recipe to re-sync with Quagga repository:
# git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga
# cd quagga
# git checkout master
# git pull git://code.quagga.net/quagga.git master
# git checkout -b pim origin/pim
# git rebase master pim
# # Test, then push back into Savannah repository:
# git push origin :pim ;# delete remote branch pim
# git push --all
#
# $QuaggaId: $Format:%an, %ai, %h$ $
git clone ssh://evertonm@git.sv.gnu.org/srv/git/qpimd.git quagga

View File

@ -1,23 +0,0 @@
#! /bin/bash
#
# Bootstrap Quagga autotools for pimd.
#
# Run from quagga's top dir as:
# ./pimd/quagga-bootstrap.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
me=`basename $0`
msg () {
echo >&2 $me: $*
}
if [ -f ./bootstrap.sh ]; then
msg found ./bootstrap.sh from quagga
./bootstrap.sh
else
msg missing ./bootstrap.sh from quagga
#autoreconf -i --force
#bootstrap from tarball prefers autoreconf -i
autoreconf -i
fi

View File

@ -1,10 +0,0 @@
#! /bin/bash
#
# Build minimum Quagga needed for pimd.
#
# Run from quagga's top dir as:
# ./pimd/quagga-build-no-vtysh.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && ./pimd/quagga-configure-no-vtysh.sh && make

View File

@ -1,10 +0,0 @@
#! /bin/bash
#
# Build minimum Quagga needed for pimd.
#
# Run from quagga's top dir as:
# ./pimd/quagga-build.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
./pimd/quagga-memtypes.sh && ./pimd/quagga-bootstrap.sh && ./pimd/quagga-configure.sh && make

View File

@ -1,10 +0,0 @@
#! /bin/bash
#
# Configure for minimum Quagga build needed for pimd.
#
# Run from quagga's top dir as:
# ./pimd/quagga-configure-no-vtysh.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
./configure --disable-babeld --disable-bgpd --disable-ripd --disable-ripngd --disable-ospfd --disable-ospf6d --disable-watchquagga --disable-bgp-announce --disable-ospfapi --disable-ospfclient --disable-rtadv --disable-irdp --enable-pimd --enable-tcp-zebra --enable-ipv6

View File

@ -1,10 +0,0 @@
#! /bin/bash
#
# Configure for minimum Quagga build needed for pimd.
#
# Run from quagga's top dir as:
# . pimd/quagga-configure.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
tail -1 ./pimd/quagga-configure-no-vtysh.sh --enable-vtysh

View File

@ -1,12 +0,0 @@
#! /bin/bash
#
# Add to git new files created by qpimd patch
#
# Run from quagga's top dir as:
# ./pimd/quagga-git-add.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
chmod a+rx pimd/*.sh
git add doc/pimd.8
git add pimd

View File

@ -1,22 +0,0 @@
#! /bin/bash
#
# Check lib/memtypes.h from Quagga
#
# Run from quagga's top dir as:
# ./pimd/quagga-memtypes.sh
#
# $QuaggaId: $Format:%an, %ai, %h$ $
me=`basename $0`
msg () {
echo >&2 $me: $*
}
memtypes_h=lib/memtypes.h
if [ -e $memtypes_h ]; then
memtypes_h_size=`ls -s $memtypes_h | cut -d' ' -f1`
if [ "$memtypes_h_size" -lt 1 ]; then
msg WARNING: removing empty file: $memtypes_h -- awk failed?
rm $memtypes_h
fi
fi