[1832] in testers
7.3: sendbug
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Fri Aug 9 19:50:54 1991
Date: Fri, 9 Aug 91 19:51:07 -0400
To: testers@MIT.EDU
From: "Richard Basch" <basch@MIT.EDU>
A 7.2 machine With 7.3 packs does not have a version number printed.
-R
*** /tmp/,RCSt1VYQBIO Fri Aug 9 19:49:58 1991
--- sendbug.sh Fri Aug 9 19:49:37 1991
***************
*** 5,11 ****
bugs_address=bugs@Athena.MIT.EDU
sendmail="/usr/lib/sendmail -t -oi"
report_file=/tmp/bug$$.text
! version_file=/etc/athena/version
if [ ! -r $version_file ]; then
version="unknown version (no $version_file found)"
else
--- 5,17 ----
bugs_address=bugs@Athena.MIT.EDU
sendmail="/usr/lib/sendmail -t -oi"
report_file=/tmp/bug$$.text
!
! if [ ! -r /etc/athena/version -a -r /etc/version ]; then
! version_file=/etc/version
! else
! version_file=/etc/athena/version
! fi
!
if [ ! -r $version_file ]; then
version="unknown version (no $version_file found)"
else