summaryrefslogtreecommitdiffstats
path: root/contrib
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 /contrib
parent8b5ba1c39acd9bdf64c55a1407021111969a4289 (diff)
- (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
set right.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/solaris/opensshd.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/solaris/opensshd.in b/contrib/solaris/opensshd.in
index 057459b1..d1d573eb 100755
--- a/contrib/solaris/opensshd.in
+++ b/contrib/solaris/opensshd.in
@@ -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