1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-21 02:48:46 +00:00

Long overdue removal of vnconfig(8)

mdconfig(8) took over the job back when GEOM happened.

PR:	108360
Submitted by:	Alex Kozlov<spam@rm-rf.kiev.ua>
This commit is contained in:
Poul-Henning Kamp 2007-01-28 08:53:48 +00:00
parent f67d792692
commit da7f7d4b34
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166304
3 changed files with 0 additions and 32 deletions

View File

@ -179,7 +179,6 @@ SUBDIR= ac \
${_usbdevs} \
vidcontrol \
vipw \
vnconfig \
watch \
watchdogd \
wicontrol \

View File

@ -1,6 +0,0 @@
# $FreeBSD$
PROG= vnconfig
NO_MAN=
.include <bsd.prog.mk>

View File

@ -1,25 +0,0 @@
/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <stdio.h>
#include <stdlib.h>
int
main(int argc, char **argv)
{
fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n");
fprintf(stderr, "\tPlease use mdconfig(8).\n");
exit (1);
}