Ack. On 11/09/2009 04:16 PM, Peter Jones wrote:
Right now when you ssh in, you get errors in the log because sshd wants to interact with /var/log/lastlog. These errors will just confuse people, so create /var/log/lastlog when we start sshd. --- anaconda | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/anaconda b/anaconda index 21b4d4b..2f0ca53 100755 --- a/anaconda +++ b/anaconda @@ -430,6 +430,8 @@ def startSsh(): childpid = os.fork() if not childpid: + os.mkdir("/var/log", 0755) + os.open("/var/log/lastlog", os.O_RDWR | os.O_CREAT, 0644) ssh_keys = { 'rsa1':'ssh_host_key', 'rsa':'ssh_host_rsa_key',
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list