Add a stub send-pr that simply points people towards the online support

pages, to give people used to send-pr a bit of guidance.

MFC after:	3 days
This commit is contained in:
Gavin Atkinson 2014-06-17 12:59:03 +00:00
parent d09b3c60d0
commit 47200bbd05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267577
4 changed files with 17 additions and 1 deletions

View File

@ -39,7 +39,6 @@
# done
# 20140614: send-pr removal
OLD_FILES+=usr/bin/send-pr
OLD_FILES+=usr/share/man/man1/send-pr.1.gz
OLD_FILES+=etc/gnats/freefall
OLD_DIRS+=etc/gnats

View File

@ -143,6 +143,7 @@ SUBDIR= alias \
rwall \
script \
sed \
send-pr \
seq \
shar \
showmount \

5
usr.bin/send-pr/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $FreeBSD$
SCRIPTS= send-pr.sh
.include <bsd.prog.mk>

11
usr.bin/send-pr/send-pr.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
#
# $FreeBSD$
#
echo
echo "FreeBSD has migrated away from GNATS for tracking bugs, and so send-pr"
echo "is no longer used for submitting bug reports."
echo "Please see https://www.freebsd.org/support.html for more information."
echo
exit 1