[rancid] Rancid 3.1 control_rancid errors when there are diffs

Tanner - namelessjoe at hotmail.com
Wed Mar 11 19:26:28 UTC 2015


I got it fixed thanks to everyone for their contributions I had to change a fee things.  Thanks Lee and David 
control_rancid
no -t $MAILOPTStosendmail -t $MAILOPTS
in rancid.conf
PATH=/usr/local/rancid/bin:/usr/bin:.:/bin:/usr/local/bin:/usr/bin; export PATHto include /usr/sbinPATH=/usr/local/rancid/bin:/usr/bin:.:/bin:/usr/local/bin:/usr/bin:/usr/sbin; export PATH
#SENDMAIL="no"toSENDMAIL="sendmail"

From: namelessjoe at hotmail.com
To: rancid-discuss at shrubbery.net
Date: Wed, 11 Mar 2015 18:29:46 +0000
Subject: Re: [rancid] Rancid 3.1 control_rancid errors when there are diffs





I have postfix installed and it has a sendmail clone function that works from the command line i changed the
 no -t $MAILOPTS 

to sendmail -t $MAILOPTS and i still get an error is it a path issue or what am i not understanding
Trying to get all of the configs.All routers sucessfully completed.
cvs diff: Diffing .cvs diff: Diffing configscvs commit: Examining .cvs commit: Examining configs/usr/local/rancid/var/CVS/networking/configs/198.210.70.10,v  <--  configs/198.210.70.10new revision: 1.12; previous revision: 1.11/usr/local/rancid/bin/control_rancid: 483: /usr/local/rancid/bin/control_rancid: sendmail: not found
ending: Wed Mar 11 10:27:32 CDT 2015
From: grungelizard9 at hotmail.com
To: lee.e.rian at census.gov; namelessjoe at hotmail.com; rancid-discuss at shrubbery.net
Subject: RE: [rancid] Rancid 3.1 control_rancid errors when there are diffs
Date: Wed, 11 Mar 2015 11:29:18 -0400




I have a similar issue running 3.1.99, but using postfix.  I get the error "/home/rancid/bin/control_rancid: 631: /home/rancid/bin/control_rancid: -t: not found".  I had the same issue before upgrading (was running 3.1).  "        ) |  -t $MAILOPTS" is the line of the control_rancid where it hangs.  Any help is greatly appreciated.
 if [ $MAXSZ -eq 0 ] ; then        (          echo "To: $mailrcpt"          echo "Subject: $subject"          echo "$MAILHEADERS" | awk '{L = "";LN = $0;while (LN ~ /\\n/) { I = index(LN,"\\n");L = L substr(LN,0,I-1) "\n";LN = substr(LN,I+2,length(LN)-I-1);}print L LN;}'          echo ""          cat $TMP.diff        ) |  -t $MAILOPTS

# Additional options for sendmail(8).#MAILOPTS="-f bounces.go.here at example.com"; export MAILOPTS

Trying to get all of the configs.All routers sucessfully completed.
cvs diff: Diffing .cvs diff: Diffing configscvs commit: Examining .cvs commit: Examining configs/home/rancid/var/rancid/CVS/demo-vpn/configs/imp_620,v  <--  configs/imp_620new revision: 1.30; previous revision: 1.29/home/rancid/bin/control_rancid: 631: /home/rancid/bin/control_rancid: -t: not found

Thanks!From: lee.e.rian at census.gov
To: namelessjoe at hotmail.com; rancid-discuss at shrubbery.net
Date: Wed, 11 Mar 2015 14:58:12 +0000
Subject: Re: [rancid] Rancid 3.1 control_rancid errors when there are diffs








I had the same problem after building rancid on a machine that didn't have sendmail installed.  Install sendmail and edit control_rancid to change all the

  no -t $MAILOPTS

to

  sendmail -t $MAILOPTS





Regards,

Lee











From: Rancid-discuss <rancid-discuss-bounces at shrubbery.net> on behalf of Tanner Lyle <namelessjoe at hotmail.com>

Sent: Wednesday, March 11, 2015 10:07 AM

To: rancid-discuss at shrubbery.net

Subject: [rancid] Rancid 3.1 control_rancid errors when there are diffs
 


I have installed rancid 3.1 and have it working on a Ubuntu install.  It works and collects diffs and shows them in the repository and i have the cvs web working, but i cannot get it to e-mail me the diffs and am getting an error
 in the var/logs only when there are diffs.  it errors on the control_rancid portion of it i can send mail through postfix with both the sendmail and mail command.  I installed postfix after sendmail fail as i thought it was my problem.  Below is the log of
 both and the control_rancid, and yes i am a newbie









rancid log when there are no changes




rancid at lyle ~/var/logs $ tail -f networking.20150311.080400 
starting: Wed Mar 11 08:04:00 CDT 2015



Trying to get all of the configs.
All routers sucessfully completed.



cvs diff: Diffing .
cvs diff: Diffing configs
cvs commit: Examining .
cvs commit: Examining configs



ending: Wed Mar 11 08:05:14 CDT 2015







rancid log when there are changes




rancid at lyle ~/var/logs $ tail -f networking.20150311.083546 
starting: Wed Mar 11 08:35:46 CDT 2015



Trying to get all of the configs.
All routers sucessfully completed.



cvs diff: Diffing .
cvs diff: Diffing configs
cvs commit: Examining .
cvs commit: Examining configs
/usr/local/rancid/var/CVS/networking/configs/foundryswitch,v  <--  configs/foundryswitch
new revision: 1.11; previous revision: 1.10
/usr/local/rancid/bin/control_rancid: 483: /usr/local/rancid/bin/control_rancid: no: not found



ending: Wed Mar 11 08:37:07 CDT 2015







control_rancid                  line 483 is the     ) | no -t $MAILOPTS




# Mail out the diffs (if there are any).
if [ -s $TMP.diff ] ; then
    MAXSZ=${MAILSPLIT:=0}
    if [ $MAXSZ -ne 0 ] ; then
BLOCKSIZE=1024; export BLOCKSIZE
tmpk=`perl -e "my(@S) = stat(\"$TMP.diff\"); print int(\\$S[7] / 1024);"`
unset BLOCKSIZE
if [ $tmpk -lt $MAXSZ ] ; then
   MAXSZ=0
fi
    fi
    if [ $MAXSZ -eq 0 ] ; then
(
 echo "To: $mailrcpt"
 echo "Subject: $subject"
 echo "$MAILHEADERS" | awk '{L = "";LN = $0;while (LN ~ /\\n/) { I = index(LN,"\\n");L = L substr(LN,0,I-1) "\n";LN = substr(LN,I+2,length(LN)-I-1);}print L LN;}'
 echo ""
 cat $TMP.diff
) | no -t $MAILOPTS
    else
CDIR=`pwd`
SDIR=${TMPDIR:=/tmp}/rancid.$GROUP.$$.mail
error=`mkdir $SDIR`
if [ $? -ne 0 ] ; then
   echo "Could not create $SDIR directory" >&2
   echo $error >&2
else
   cd $SDIR
   split -b${MAXSZ}k $TMP.diff
   nfiles=`ls | wc -l | sed -e 's/^ *//' |cut -d' ' -f1`
   n=0
   dt=`perl -e 'print time();'`
   for file in `ls`; do
n=`expr $n + 1`
MSGID="<$dt.RANCID$GROUP$$${nfiles}${n}@`hostname`>"
(
echo "To: $mailrcpt"
echo "Subject: $n of ${nfiles}: $subject"
echo "Message-Id: $MSGID"
if [ $n -gt 1 ] ; then
   echo "References: $LASTIDS"
fi
echo "$MAILHEADERS" | awk '{L = "";LN = $0;while (LN ~ /\\n/) { I = index(LN,"\\n");L = L substr(LN,0,I-1) "\n";LN = substr(LN,I+2,length(LN)-I-1);}print L LN;}'
echo ""
cat $file
) | no -t $MAILOPTS
LASTIDS="$LASTIDS $MSGID"
if [ $n -lt $nfiles ]; then
   # this just tries to make the msgs order right in MUAs
   sleep 1
fi
   done
   cd $CDIR
   rm -rf $SDIR
fi
    fi
fi





























_______________________________________________
Rancid-discuss mailing list
Rancid-discuss at shrubbery.net
http://www.shrubbery.net/mailman/listinfo/rancid-discuss 		 	   		   		 	   		   		 	   		  

_______________________________________________
Rancid-discuss mailing list
Rancid-discuss at shrubbery.net
http://www.shrubbery.net/mailman/listinfo/rancid-discuss 		 	   		  
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.shrubbery.net/pipermail/rancid-discuss/attachments/20150311/e72e3bb9/attachment.html>


More information about the Rancid-discuss mailing list