svn commit: r562079 - in head/net: . chrony-lite

Baptiste Daroussin bapt at nours.eu
Tue Jan 19 21:14:29 UTC 2021


19 janv. 2021 21:33:34 Bernhard Froehlich <decke at FreeBSD.org>:

> 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 at 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"


This should have been a flavor

Best regards,
Bapt


More information about the svn-ports-head mailing list