Install aliases "fasthalt" and "fastboot" for halt and boot respectively.

This is for "backwards compatibility". Documented these aliases in the
manual page.
This commit is contained in:
David Greenman 1994-08-21 05:48:34 +00:00
parent 2539bf7513
commit 7f4b19d683
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2171
3 changed files with 18 additions and 3 deletions

View File

@ -4,8 +4,9 @@ PROG= reboot
DPADD= ${LIBUTIL}
LDADD= -lutil
MAN8= reboot.8 boot_hp300.8 boot_i386.8 boot_sparc.8 boot_tahoe.8 boot_vax.8
MLINKS= reboot.8 halt.8
LINKS= ${BINDIR}/reboot ${BINDIR}/halt
MLINKS= reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
LINKS= ${BINDIR}/reboot ${BINDIR}/halt ${BINDIR}/reboot ${BINDIR}/fastboot \
${BINDIR}/reboot ${BINDIR}/fasthalt
XXXBROKENafterinstall:
${MINSTALL} boot_hp300.8 ${DESTDIR}${MANDIR}8/hp300/boot.8

View File

@ -44,6 +44,10 @@ stopping and restarting the system
.Op Fl nq
.Nm reboot
.Op Fl nq
.Nm fasthalt
.Op Fl nq
.Nm fastboot
.Op Fl nq
.Sh DESCRIPTION
The
.Nm halt
@ -72,6 +76,16 @@ the flushing of the file system cache is performed.
This option should probably not be used.
.El
.Pp
The
.Nm fasthalt
and
.Nm fastboot
utilities are nothing more than aliases for the
.Nm halt
and
.Nm reboot
utilities.
.Pp
Normally, the
.Xr shutdown 8
utility is used when the system needs to be halted or restarted, giving

View File

@ -66,7 +66,7 @@ main(argc, argv)
int ch, howto, lflag, nflag, qflag, sverrno;
char *p, *user;
if (!strcmp((p = rindex(*argv, '/')) ? p + 1 : *argv, "halt")) {
if (strstr((p = rindex(*argv, '/')) ? p + 1 : *argv, "halt")) {
dohalt = 1;
howto = RB_HALT;
} else