summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-10-12 21:52:39 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-10-12 21:52:39 +0000
commit7a97339359a75e2dbf01edb27846a3bc113d50a8 (patch)
treed6f8352d88fcbe16f8faef2677261f150a976092
parent8b5ba1c39acd9bdf64c55a1407021111969a4289 (diff)
- (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
set right.
-rw-r--r--ChangeLog4
-rwxr-xr-xcontrib/solaris/opensshd.in16
2 files changed, 11 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 66f0d9023..e422d97cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,8 @@
21 - (bal) First wave of contrib/solaris/ package upgrades. Still more 21 - (bal) First wave of contrib/solaris/ package upgrades. Still more
22 work needs to be done, but it is a 190% better then the stuff we 22 work needs to be done, but it is a 190% better then the stuff we
23 had before! 23 had before!
24 - (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
25 set right.
24 26
2520011010 2720011010
26 - (djm) OpenBSD CVS Sync 28 - (djm) OpenBSD CVS Sync
@@ -6719,4 +6721,4 @@
6719 - Wrote replacements for strlcpy and mkdtemp 6721 - Wrote replacements for strlcpy and mkdtemp
6720 - Released 1.0pre1 6722 - Released 1.0pre1
6721 6723
6722$Id: ChangeLog,v 1.1607 2001/10/12 20:30:52 mouring Exp $ 6724$Id: ChangeLog,v 1.1608 2001/10/12 21:52:39 mouring Exp $
diff --git a/contrib/solaris/opensshd.in b/contrib/solaris/opensshd.in
index 057459b17..d1d573eb8 100755
--- a/contrib/solaris/opensshd.in
+++ b/contrib/solaris/opensshd.in
@@ -9,14 +9,14 @@ EGREP=/usr/bin/egrep
9KILL=/usr/bin/kill 9KILL=/usr/bin/kill
10PS=/usr/bin/ps 10PS=/usr/bin/ps
11 11
12PREFIX=%%openSSHDir%% 12prefix=%%openSSHDir%%
13ETCDIR=%%configDir%% 13etcdir=%%configDir%%
14 14
15SSHD=$PREFIX/sbin/sshd 15SSHD=$prefix/sbin/sshd
16SSH_KEYGEN=$PREFIX/bin/ssh-keygen 16SSH_KEYGEN=$prefix/bin/ssh-keygen
17HOST_KEY_RSA1=$ETCDIR/ssh_host_key 17HOST_KEY_RSA1=$etcdir/ssh_host_key
18HOST_KEY_DSA=$ETCDIR/ssh_host_dsa_key 18HOST_KEY_DSA=$etcdir/ssh_host_dsa_key
19HOST_KEY_RSA=$ETCDIR/ssh_host_rsa_key 19HOST_KEY_RSA=$etcdir/ssh_host_rsa_key
20 20
21killproc() { 21killproc() {
22 _procname=$1 22 _procname=$1