diff options
author | gavin <gavin@FreeBSD.org> | 2014-06-17 12:59:03 +0000 |
---|---|---|
committer | gavin <gavin@FreeBSD.org> | 2014-06-17 12:59:03 +0000 |
commit | 132237b3b986e05b8e7c81cd7f6c8dad60ec9bb7 (patch) | |
tree | 47881749c3dd38ad41516ded2092dca50fa6a210 /usr.bin/send-pr | |
parent | 0b024c915801eda08f22779de5c1d810a6950dbf (diff) | |
download | FreeBSD-src-132237b3b986e05b8e7c81cd7f6c8dad60ec9bb7.zip FreeBSD-src-132237b3b986e05b8e7c81cd7f6c8dad60ec9bb7.tar.gz |
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
Diffstat (limited to 'usr.bin/send-pr')
-rw-r--r-- | usr.bin/send-pr/Makefile | 5 | ||||
-rwxr-xr-x | usr.bin/send-pr/send-pr.sh | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/send-pr/Makefile b/usr.bin/send-pr/Makefile new file mode 100644 index 0000000..2b422bf --- /dev/null +++ b/usr.bin/send-pr/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SCRIPTS= send-pr.sh + +.include <bsd.prog.mk> diff --git a/usr.bin/send-pr/send-pr.sh b/usr.bin/send-pr/send-pr.sh new file mode 100755 index 0000000..ab59040 --- /dev/null +++ b/usr.bin/send-pr/send-pr.sh @@ -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 |