This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: /var/log/lastlog


On Sun, Jun 10, 2001 at 08:21:19AM -0700, Karl M wrote:
> Hi All...
> 
> The patch is attached
> 
> ...Karl
> [...]
> --- ssh-host-config.orig	Wed Mar  7 01:38:20 2001
> +++ ssh-host-config	Sun Jun 10 08:12:21 2001
> @@ -433,16 +433,35 @@
>        echo 'ssh  stream  tcp     nowait  root    /usr/sbin/sshd -i' >> 
> "${_inetcnf}"
>      else
>        echo '# ssh  stream  tcp     nowait  root    /usr/sbin/sshd -i' >> 
> "${_inetcnf}"
>      fi
>      echo "Added ssh to ${_inetcnf}"
>    fi
> fi
> 
> +# Create /var/log and /var/log/lastlog if not already existing
> +
> +if [ -f /var/log ]
> +then
> +  echo "Creating /var/log failed\!"
> +else
> +  if [ ! -d /var/log ]
> +  then
> +    mkdir /var/log
> +  fi
> +  if [ -d /var/log/lastlog ]
> +  then
> +    echo "Creating /var/log/lastlog failed\!"
> +  elif [ ! -f /var/log/lastlog ]
> +  then
> +    cat /dev/null > /var/log/lastlog
> +  fi
> +fi
> +
> if [ "${old_install}" = "1" ]
> then
>    echo
>    echo "Note: If you have used sshd as service or from inetd, don't forget 
> to"
>    echo "      change the path to sshd.exe in the service entry or in 
> inetd.conf."
> fi
> 
> echo

Thanks, applied to my local sandbox. I will send it to openssh-unix-dev
as well.

Sorry for the delay,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]