Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jan 2021 20:33:27 +0000 (UTC)
From:      Bernhard Froehlich <decke@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r562079 - in head/net: . chrony-lite
Message-ID:  <202101192033.10JKXREt072236@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: decke
Date: Tue Jan 19 20:33:26 2021
New Revision: 562079
URL: https://svnweb.freebsd.org/changeset/ports/562079

Log:
  net/chrony-lite: Slimmed down chrony without NTS support
  
  chrony is a pair of programs which are used to maintain the accuracy of the
  system clock on a computer; the two programs are called chronyd and chronyc.
  
  chronyd is a daemon which runs in background on the system.  It obtains
  measurements via the network of the system clock's offset relative to time
  servers on other systems and adjusts the system time accordingly.  For
  isolated systems, the user can periodically enter the correct time by hand
  (using chronyc).  In either case, chronyd determines the rate at which the
  computer gains or loses time, and compensates for this.  chronyd implements
  the NTP protocol and can act as either a client or a server.
  
  chronyc provides a user interface to chronyd for monitoring its performance
  and configuring various settings.  It can do so while running on the same
  computer as the chronyd instance it is controlling or a different computer.
  
  WWW: http://chrony.tuxfamily.org/
  
  PR:		252584
  Submitted by:	myself

Added:
  head/net/chrony-lite/
  head/net/chrony-lite/Makefile   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Jan 19 20:24:46 2021	(r562078)
+++ head/net/Makefile	Tue Jan 19 20:33:26 2021	(r562079)
@@ -79,6 +79,7 @@
     SUBDIR += cf
     SUBDIR += charm
     SUBDIR += chrony
+    SUBDIR += chrony-lite
     SUBDIR += citrix_ica
     SUBDIR += cjdns
     SUBDIR += clash

Added: head/net/chrony-lite/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/chrony-lite/Makefile	Tue Jan 19 20:33:26 2021	(r562079)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME=	chrony
+PKGNAMESUFFIX=	-lite
+
+MAINTAINER=	decke@FreeBSD.org
+COMMENT=	System clock synchronization client and server (lite)
+
+MASTERDIR=	${.CURDIR}/../chrony
+
+CONFLICTS_INSTALL=	chrony
+
+OPTIONS_EXCLUDE=	HTMLDOCS NETTLE NSS NTS
+
+.include "${MASTERDIR}/Makefile"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101192033.10JKXREt072236>