[chrony-dev] [GIT] chrony/chrony.git branch, master, updated. 2.1.1-18-g0bcd105

[ Thread Index | Date Index | More chrony.tuxfamily.org/chrony-dev Archives ]


This is an automated email from git. It was enerated because a ref
change was pushed to the repository "chrony/chrony.git".

The branch, master has been updated
       via  0bcd10560a87d61ae60e74d85a0604511c868bdd (commit)
       via  46b7148f3bb862070fab7ff05dd41adbe338de84 (commit)
       via  37732130e1cfedee005509b46f292b8b7f9b4714 (commit)
       via  7a3b1414cd8ba5ccf4485b7c1097437b375e34f8 (commit)
       via  a4a21c1dca7b1d0513fe392f916a1e26e34a05c7 (commit)
       via  206e597b046e4d565af7ef866dc178621e0c579d (commit)
       via  ceef8ad2d87b0d6e9b074dd07760084c94807c6b (commit)
       via  2d581a6a86f51c1e0b8dc93fa544d68d842bedc1 (commit)
       via  82f7fa3887e85a5fd068ec5de2cce92e93058f16 (commit)
       via  f88a01e8c791d059474205f1fdce88434de9783b (commit)
       via  ca8e03b78598b275aea5be0e7c65bd1ac7745168 (commit)
       via  15932c9d7b51a3859dc923dd90977422b6259abb (commit)
      from  0fc0f906e12c724a7793c37be9559b9b88a13b70 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0bcd10560a87d61ae60e74d85a0604511c868bdd
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Tue Jul 28 15:29:30 2015 +0200

    cmdmon: listen on Unix domain socket
    
    In addition to the IPv4/IPv6 command sockets, create also a Unix domain
    socket to process cmdmon requests. For now, there is no difference for
    authorized commands, packets from all sockets need to be authenticated.
    
    The default path of the socket is /var/run/chrony/chronyd.sock. It can
    be configured with the bindcmdaddress directive with an address starting
    with /.

commit 46b7148f3bb862070fab7ff05dd41adbe338de84
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Tue Jul 28 14:44:25 2015 +0200

    clientlog: refactor CLG_Log*Access functions a bit

commit 37732130e1cfedee005509b46f292b8b7f9b4714
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Tue Jul 28 14:29:29 2015 +0200

    clientlog: allow unspecified address in CLG_Log*Access functions

commit 7a3b1414cd8ba5ccf4485b7c1097437b375e34f8
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Tue Jul 28 13:03:23 2015 +0200

    util: add function to get sockaddr family name

commit a4a21c1dca7b1d0513fe392f916a1e26e34a05c7
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 14:46:50 2015 +0200

    client: handle signals
    
    Add a signal handler and rework the code to go through close_io() even
    when terminated by a signal. This will allow chronyc to remove Unix
    domain sockets on exit.

commit 206e597b046e4d565af7ef866dc178621e0c579d
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 14:41:14 2015 +0200

    util: use sigaction() to set signal handler

commit ceef8ad2d87b0d6e9b074dd07760084c94807c6b
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 14:27:41 2015 +0200

    main: move signal handler setting to util.c

commit 2d581a6a86f51c1e0b8dc93fa544d68d842bedc1
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Fri Jul 24 15:19:31 2015 +0200

    cmdmon: add debug messages for receiving/sending packets

commit 82f7fa3887e85a5fd068ec5de2cce92e93058f16
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 13:24:12 2015 +0200

    util: remove INLINE_UTILITIES support

commit f88a01e8c791d059474205f1fdce88434de9783b
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 16:30:29 2015 +0200

    remove getdate.c from repository
    
    Building from repository now requires installed bison, but released
    tarballs will still include a generated getdate.c.

commit ca8e03b78598b275aea5be0e7c65bd1ac7745168
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 16:20:58 2015 +0200

    include config.h in all compiled files
    
    After running configure script (new config.h written), all objects
    should be recompiled.

commit 15932c9d7b51a3859dc923dd90977422b6259abb
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Jul 27 12:24:13 2015 +0200

    sys: add new log message for kernel status reset after leap second
    
    When a leap second is applied by the kernel, it doesn't actually clear
    the STA_INS|STA_DEL bits from the status word, but the state returned
    by ntp_adjtime()/adjtimex() is TIME_WAIT until the application clears
    the bits.
    
    Add "System clock status reset after leap second" log message for this
    case.

-----------------------------------------------------------------------

Summary of changes:
 .gitignore      |    1 +
 Makefile.in     |    2 +-
 client.c        |   30 +-
 clientlog.c     |   60 +-
 cmdmon.c        |  112 ++-
 conf.c          |   22 +-
 conf.h          |    1 +
 getdate.c       | 2870 -------------------------------------------------------
 getdate.y       |    7 +-
 hash_nss.c      |    3 +-
 main.c          |    8 +-
 make_release    |    2 +-
 ntp_io.c        |    6 +-
 sys_linux.c     |    9 +-
 util.c          |   69 +-
 util.h          |    8 +-
 wrap_adjtimex.c |   15 +-
 wrap_adjtimex.h |    2 +-
 18 files changed, 232 insertions(+), 2995 deletions(-)
 delete mode 100644 getdate.c


hooks/post-receive
--
chrony/chrony.git

-- 
To unsubscribe email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "unsubscribe" in the subject.
For help email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "help" in the subject.
Trouble?  Email listmaster@xxxxxxxxxxxxxxxxxxxx.


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/