Blame SOURCES/remove-babeld-ldpd.sh

9ad5e0
#!/bin/sh
9ad5e0
#this script is used to remove babled and ldpd from the tar sources
9ad5e0
#Usage: sh remove-babeld-ldpd.sh <VERSION>
9ad5e0
#Example: sh remove-babeld-ldpd.sh 7.3.1 - this is for frr-7.3.1.tar.gz file
9ad5e0
9ad5e0
VERSION=$1
9ad5e0
TAR=frr-${VERSION}.tar.gz
9ad5e0
DIR=frr-${VERSION}
9ad5e0
9ad5e0
echo ${VERSION}
9ad5e0
echo ${TAR}
9ad5e0
echo ${DIR}
9ad5e0
9ad5e0
tar -xzf ${TAR}
9ad5e0
rm -rf ${DIR}/babeld ${DIR}/ldpd
9ad5e0
tar -czf ${TAR} ${DIR}