Parcourir la source

remove extra space

Ralf S. Engelschall il y a 21 ans
Parent
commit
94c071adfc
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      openssh/openssh.spec

+ 4 - 4
openssh/openssh.spec

@@ -42,7 +42,7 @@ Class:        CORE
 Group:        Security
 License:      BSD
 Version:      %{V_base}%{V_portable}
-Release:      20040312
+Release:      20040324
 
 #   package options
 %option       with_fsl      yes
@@ -288,7 +288,7 @@ AutoReqProv:  no
 %post
     #   generate server RSA1 (SSH1) key
     if [ ! -f "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_key" -o \
-         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_key" ] ; then
+         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_key" ]; then
         $RPM_INSTALL_PREFIX/bin/ssh-keygen -t rsa1 -b 2048 \
             -f $RPM_INSTALL_PREFIX/etc/openssh/ssh_host_key \
             -N '' -C `hostname` 1>&2
@@ -296,7 +296,7 @@ AutoReqProv:  no
 
     #   generate server RSA (SSH2) key
     if [ ! -f "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_rsa_key" -o \
-         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_rsa_key" ] ; then
+         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_rsa_key" ]; then
         $RPM_INSTALL_PREFIX/bin/ssh-keygen -t rsa -b 2048 \
             -f $RPM_INSTALL_PREFIX/etc/openssh/ssh_host_rsa_key \
             -N '' -C `hostname` 1>&2
@@ -304,7 +304,7 @@ AutoReqProv:  no
 
     #   generate server DSA (SSH2) key
     if [ ! -f "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_dsa_key" -o \
-         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_dsa_key" ] ; then
+         ! -s "$RPM_INSTALL_PREFIX/etc/openssh/ssh_host_dsa_key" ]; then
         $RPM_INSTALL_PREFIX/bin/ssh-keygen -t dsa -b 2048 \
             -f $RPM_INSTALL_PREFIX/etc/openssh/ssh_host_dsa_key \
             -N '' -C `hostname` 1>&2