diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2022-10-19 21:04:46 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2022-10-19 21:04:46 +0000 |
commit | 729f909d7125478aef282df67e4fb3454a2204b5 (patch) | |
tree | 8a446ea0667bd5513ecf267aad1bf9d0ccf1270e /etc/rc.d | |
parent | f9a29f1fc3a8125a167eb634466c44e89e594f93 (diff) |
Drop support for $rcexec; people should now use the rc_exec function.
prodded by jsg@
Diffstat (limited to 'etc/rc.d')
-rw-r--r-- | etc/rc.d/rc.subr | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/etc/rc.d/rc.subr b/etc/rc.d/rc.subr index 1d8c61c4ce1..502a469af70 100644 --- a/etc/rc.d/rc.subr +++ b/etc/rc.d/rc.subr @@ -1,4 +1,4 @@ -# $OpenBSD: rc.subr,v 1.159 2022/09/08 13:17:30 ajacoutot Exp $ +# $OpenBSD: rc.subr,v 1.160 2022/10/19 21:04:45 ajacoutot Exp $ # # Copyright (c) 2010, 2011, 2014-2022 Antoine Jacoutot <ajacoutot@openbsd.org> # Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org> @@ -374,5 +374,3 @@ unset _rcexecdir _rcflags _rclogger _rcrtable _rctimeout _rcuser # the shell will strip the quotes from daemon_flags when starting a daemon; # make sure pexp matches the process (i.e. doesn't include the quotes) pexp="$(eval echo ${daemon}${daemon_flags:+ ${daemon_flags}})" -# XXX old construct compatibility; remove after OPENBSD_7_2_RELEASE -rcexec=rc_exec |