From owner-dev-commits-src-all@freebsd.org Thu May 13 07:56:59 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7FB8E635118; Thu, 13 May 2021 07:56:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FgkWv3DF0z4Zwd; Thu, 13 May 2021 07:56:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 61A781AE60; Thu, 13 May 2021 07:56:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14D7uxVc016011; Thu, 13 May 2021 07:56:59 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14D7uxP7016010; Thu, 13 May 2021 07:56:59 GMT (envelope-from git) Date: Thu, 13 May 2021 07:56:59 GMT Message-Id: <202105130756.14D7uxP7016010@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Gordon Bergling Subject: git: 1760799b4c61 - main - Remove references to timed(8) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: gbe X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1760799b4c612b98c0e5c1abeb03814e24c33cf6 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 May 2021 07:56:59 -0000 The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=1760799b4c612b98c0e5c1abeb03814e24c33cf6 commit 1760799b4c612b98c0e5c1abeb03814e24c33cf6 Author: Ceri Davies AuthorDate: 2021-05-13 07:53:08 +0000 Commit: Gordon Bergling CommitDate: 2021-05-13 07:53:08 +0000 Remove references to timed(8) There are still references to timed(8) and timedc(8) in the base system, which were removed in 2018. PR: 255425 Reported by: Ceri Davies Reviewed by: ygy, gbe MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30232 --- lib/libc/rpc/rtime.3 | 4 +--- lib/libc/sys/adjtime.2 | 6 ++---- lib/libc/sys/clock_gettime.2 | 5 ++--- lib/libc/sys/gettimeofday.2 | 5 ++--- libexec/rc/rc.conf | 2 -- share/man/man5/rc.conf.5 | 26 +------------------------- 6 files changed, 8 insertions(+), 40 deletions(-) diff --git a/lib/libc/rpc/rtime.3 b/lib/libc/rpc/rtime.3 index 028d2beade14..e657ca50aa18 100644 --- a/lib/libc/rpc/rtime.3 +++ b/lib/libc/rpc/rtime.3 @@ -1,7 +1,7 @@ .\" @(#)rtime.3n 2.1 88/08/08 4.0 RPCSRC; from 1.5 88/02/08 SMI .\" $FreeBSD$ .\" -.Dd November 22, 1987 +.Dd May 13, 2021 .Dt RTIME 3 .Os .Sh NAME @@ -46,5 +46,3 @@ however, the routine will instead use and block until a reply is received from the time server. .Sh RETURN VALUES .Rv -std rtime -.Sh SEE ALSO -.Xr timed 8 diff --git a/lib/libc/sys/adjtime.2 b/lib/libc/sys/adjtime.2 index 03a93a8ae842..18f6f368d140 100644 --- a/lib/libc/sys/adjtime.2 +++ b/lib/libc/sys/adjtime.2 @@ -28,7 +28,7 @@ .\" @(#)adjtime.2 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd May 13, 2021 .Dt ADJTIME 2 .Os .Sh NAME @@ -96,9 +96,7 @@ The process's effective user ID is not that of the super-user. .El .Sh SEE ALSO .Xr date 1 , -.Xr gettimeofday 2 , -.Xr timed 8 , -.Xr timedc 8 +.Xr gettimeofday 2 .Rs .%T "TSP: The Time Synchronization Protocol for UNIX 4.3BSD" .%A R. Gusella diff --git a/lib/libc/sys/clock_gettime.2 b/lib/libc/sys/clock_gettime.2 index 6dca19449be9..4552819ea902 100644 --- a/lib/libc/sys/clock_gettime.2 +++ b/lib/libc/sys/clock_gettime.2 @@ -29,7 +29,7 @@ .\" .\" $FreeBSD$ .\" -.Dd December 7, 2019 +.Dd May 13, 2021 .Dt CLOCK_GETTIME 2 .Os .Sh NAME @@ -154,8 +154,7 @@ A user other than the super-user attempted to set the time. .Xr adjtime 2 , .Xr clock_getcpuclockid 3 , .Xr ctime 3 , -.Xr pthread_getcpuclockid 3 , -.Xr timed 8 +.Xr pthread_getcpuclockid 3 .Sh STANDARDS The .Fn clock_gettime , diff --git a/lib/libc/sys/gettimeofday.2 b/lib/libc/sys/gettimeofday.2 index 29f713653063..08e3979149e7 100644 --- a/lib/libc/sys/gettimeofday.2 +++ b/lib/libc/sys/gettimeofday.2 @@ -28,7 +28,7 @@ .\" @(#)gettimeofday.2 8.2 (Berkeley) 5/26/95 .\" $FreeBSD$ .\" -.Dd October 27, 2018 +.Dd May 13, 2021 .Dt GETTIMEOFDAY 2 .Os .Sh NAME @@ -123,8 +123,7 @@ A user other than the super-user attempted to set the time. .Xr clock_gettime 2 , .Xr ctime 3 , .Xr timeradd 3 , -.Xr clocks 7 , -.Xr timed 8 +.Xr clocks 7 .Sh HISTORY The .Fn gettimeofday diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf index d941a20b6e07..041d4b6b5321 100644 --- a/libexec/rc/rc.conf +++ b/libexec/rc/rc.conf @@ -391,8 +391,6 @@ tlsservd_enable="NO" # Run rpc.tlsservd needed for NFS-over-TLS nfsd tlsservd_flags="" # Flags for rpc.tlsservd ### Network Time Services options: ### -timed_enable="NO" # Run the time daemon (or NO). -timed_flags="" # Flags to timed (if enabled). ntpdate_enable="NO" # Run ntpdate to sync time on boot (or NO). ntpdate_program="/usr/sbin/ntpdate" # path to ntpdate, if you want a different one. ntpdate_flags="-b" # Flags to ntpdate (if enabled). diff --git a/share/man/man5/rc.conf.5 b/share/man/man5/rc.conf.5 index 6baf3b22b024..95fa8bce4dc0 100644 --- a/share/man/man5/rc.conf.5 +++ b/share/man/man5/rc.conf.5 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 11, 2021 +.Dd May 13, 2021 .Dt RC.CONF 5 .Os .Sh NAME @@ -2574,29 +2574,6 @@ This is mandatory when .Va pppoed_enable is set to .Dq Li YES . -.It Va timed_enable -.Pq Vt bool -If set to -.Dq Li YES , -run the -.Xr timed 8 -service at boot time. -This command is intended for networks of -machines where a consistent -.Dq "network time" -for all hosts must be established. -This is often useful in large NFS -environments where time stamps on files are expected to be consistent -network-wide. -.It Va timed_flags -.Pq Vt str -If -.Va timed_enable -is set to -.Dq Li YES , -these are the flags to pass to the -.Xr timed 8 -service. .It Va ntpdate_enable .Pq Vt bool If set to @@ -4691,7 +4668,6 @@ it will be made permanently active. .Xr sysctl 8 , .Xr syslogd 8 , .Xr sysrc 8 , -.Xr timed 8 , .Xr unbound 8 , .Xr usbconfig 8 , .Xr wlandebug 8 ,