- (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not

set right.
This commit is contained in:
Ben Lindstrom 2001-10-12 21:52:39 +00:00
parent 8b5ba1c39a
commit 7a97339359
2 changed files with 10 additions and 8 deletions

View File

@ -21,6 +21,8 @@
- (bal) First wave of contrib/solaris/ package upgrades. Still more
work needs to be done, but it is a 190% better then the stuff we
had before!
- (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
set right.
20011010
- (djm) OpenBSD CVS Sync
@ -6719,4 +6721,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1607 2001/10/12 20:30:52 mouring Exp $
$Id: ChangeLog,v 1.1608 2001/10/12 21:52:39 mouring Exp $

View File

@ -9,14 +9,14 @@ EGREP=/usr/bin/egrep
KILL=/usr/bin/kill
PS=/usr/bin/ps
PREFIX=%%openSSHDir%%
ETCDIR=%%configDir%%
prefix=%%openSSHDir%%
etcdir=%%configDir%%
SSHD=$PREFIX/sbin/sshd
SSH_KEYGEN=$PREFIX/bin/ssh-keygen
HOST_KEY_RSA1=$ETCDIR/ssh_host_key
HOST_KEY_DSA=$ETCDIR/ssh_host_dsa_key
HOST_KEY_RSA=$ETCDIR/ssh_host_rsa_key
SSHD=$prefix/sbin/sshd
SSH_KEYGEN=$prefix/bin/ssh-keygen
HOST_KEY_RSA1=$etcdir/ssh_host_key
HOST_KEY_DSA=$etcdir/ssh_host_dsa_key
HOST_KEY_RSA=$etcdir/ssh_host_rsa_key
killproc() {
_procname=$1