]> andersk Git - openssh.git/commitdiff
- (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
authormouring <mouring>
Fri, 12 Oct 2001 21:52:39 +0000 (21:52 +0000)
committermouring <mouring>
Fri, 12 Oct 2001 21:52:39 +0000 (21:52 +0000)
   set right.

ChangeLog
contrib/solaris/opensshd.in

index 7a67a368512f8044ead348a05bafeb7ef06d5b73..aa2a30548dab144ad9e7ff822bbb98bc8194c28c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 057459b17243cb2a5436d04763171bbbc683d957..d1d573eb880c2ab066e2960d0df840df6c58a9b1 100755 (executable)
@@ -9,14 +9,14 @@ EGREP=/usr/bin/egrep
 KILL=/usr/bin/kill
 PS=/usr/bin/ps
 
-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
+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
 
 killproc() {
    _procname=$1
This page took 0.865931 seconds and 5 git commands to generate.