Re: CVS commit: src

2014-09-12 Thread dieter roelants
On Sep 11, 2014 3:10 PM, Roy Marples r...@netbsd.org wrote:

 Module Name:src
 Committed By:   roy
 Date:   Thu Sep 11 13:10:04 UTC 2014

 Log Message:
 Remove rtsol(8) and rtsold(8) as their functionality is in dhcpcd(8).
 Remove rtsol(8) from rc.d/network.
 Add -w seconds command to ifconfig to wait for N seconds for until DAD
 has finished on all addresses.
 Use ifconfig -w in rc.d/network instead of a forced sleep.

I think you forgot to mark the rescue binary and rc.d script as obsolete.

Kind regards,
dieter




Re: CVS commit: src/usr.bin/flock

2013-10-29 Thread dieter roelants
On Tue, 29 Oct 2013 12:02:15 -0400
Christos Zoulas chris...@netbsd.org wrote:

 Module Name:  src
 Committed By: christos
 Date: Tue Oct 29 16:02:15 UTC 2013
 
 Modified Files:
   src/usr.bin/flock: flock.c
 
 Log Message:
 PR/48351: Dennis Ferguson: Fix incorrect parsing of flock flags.
 XXX: still flock -s 0 fails with EINVAL, why?

Your stdin is a pty and ptyfs doesn't do advisory locks?


Re: CVS commit: src/sbin/ping

2012-12-30 Thread dieter roelants
On Sun, 30 Dec 2012 10:50:07 -0500
chris...@zoulas.com (Christos Zoulas) wrote:

 netbsd-old
 PING localhost (127.0.0.1): 1 data bytes
 [no response]

Not that old, though; it has worked in the past:

box2$ uname -r
5.1_STABLE
box2$ ping -c 1 -s 1 localhost
PING localhost (127.0.0.1): 1 data bytes
9 bytes from 127.0.0.1: icmp_seq=0 ttl=255

localhost PING Statistics
1 packets transmitted, 1 packets received, 0.0% packet loss


 netbsd-current
 PING localhost (127.0.0.1): 1 data bytes
 8 bytes from 127.0.0.1: icmp_seq=0 ttl=255
 
 We can change it anyway we want...
 
 christos


Re: CVS commit: src/etc/rc.d

2012-12-10 Thread dieter roelants
On Tue, 4 Dec 2012 17:39:42 +0100
Marc Balmer m...@msys.ch wrote:

 
 Am 04.12.2012 um 17:38 schrieb Patrick Welche pr...@netbsd.org:
 
  Module Name:src
  Committed By:   prlw1
  Date:   Tue Dec  4 16:38:40 UTC 2012
  
  Modified Files:
  src/etc/rc.d: ntpd ppp
  
  Log Message:
  Make sure that ntpd creates a pid file for the rc machinery to work.
  http://mail-index.netbsd.org/current-users/2012/11/19/msg021518.html
 
 How is that related to ppp?  Was that an accidental commit?

I don't know, but I think an entry for ppp should be added to
etc/defaults/rc.conf.

kind regards
dieter

 
  
  Please note that diffs are not public domain; they are subject to the
  copyright notices on the relevant files.
  
  
  Index: src/etc/rc.d/ppp
  diff -u src/etc/rc.d/ppp:1.8 src/etc/rc.d/ppp:1.9
  --- src/etc/rc.d/ppp:1.8Mon Oct 11 15:00:51 2004
  +++ src/etc/rc.d/pppTue Dec  4 16:38:40 2012
  @@ -1,6 +1,6 @@
  #!/bin/sh
  #
  -# $NetBSD: ppp,v 1.8 2004/10/11 15:00:51 christos Exp $
  +# $NetBSD: ppp,v 1.9 2012/12/04 16:38:40 prlw1 Exp $
  #
  
  # PROVIDE: ppp
  @@ -14,6 +14,7 @@
  $_rc_subr_loaded . /etc/rc.subr
  
  name=ppp
  +rcvar=$name
  start_cmd=ppp_start
  stop_cmd=ppp_stop
  sig_stop=-INT
  @@ -40,6 +41,8 @@ ppp_start()
  fi
  done
  echo .
  +   else
  +   warn \${ppp_peers} is not set - pppd was not started.
  fi
  }
  
  
 


Re: CVS commit: src

2012-07-14 Thread dieter roelants
On Sat, 14 Jul 2012 15:06:27 +
Darren Reed darr...@netbsd.org wrote:

 Module Name:  src
 Committed By: darrenr
 Date: Sat Jul 14 15:06:26 UTC 2012
 
 Modified Files:
   src/include: unistd.h
   src/lib/libc: shlib_version
   src/lib/libc/net: rcmd.c
   src/libexec/rshd: rshd.c
 
 Log Message:
 bin/46703: BSD r-commands use wrong source address for stderr
 http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=46703
 Bump libc minor for the addition of rresvport_af_addr()

You should probably add it to rcmd(3) as well...

kind regards
dieter