This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
tmp=$(mktemp -d) | |
echo "$tmp" | |
cert="$tmp/nts.crt" | |
key="$tmp/nts.key" | |
conf="$tmp/chrony.conf" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# nmealeap.py [+1|-1] | |
import time, math, sys | |
month=6 | |
day=30 | |
hour=23 | |
minute=59 | |
second=30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
servers=$(nproc) | |
chronyd="/usr/sbin/chronyd" | |
trap terminate SIGINT SIGTERM | |
terminate() | |
{ | |
for p in /var/run/chrony/chronyd*.pid; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Internet Engineering Task Force M. Lichvar | |
Internet-Draft Red Hat | |
Updates: 5905 (if approved) A. Malhotra | |
Intended status: Standards Track Boston University | |
Expires: January 2, 2022 Jul 1, 2021 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- draft-ntp-interleaved-modes-06.txt 2021-08-31 16:57:06.663149949 +0200 | |
+++ draft-ntp-interleaved-modes.txt 2021-08-31 16:56:53.181118901 +0200 | |
@@ -61,13 +61,14 @@ | |
2. Interleaved Client/server mode | |
3. Interleaved Symmetric mode | |
4. Interleaved Broadcast mode | |
- 5. Acknowledgements | |
- 6. IANA Considerations | |
- 7. Security Considerations | |
- 8. References |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Internet Engineering Task Force M. Lichvar | |
Internet-Draft Red Hat | |
Intended status: Standards Track Nov 11, 2020 | |
Expires: May 15, 2021 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
server_name=chrony-nts-test | |
cert=/etc/pki/tls/certs/nts.crt | |
key=/etc/pki/tls/private/nts.key | |
sed -i "/ $server_name\$/d" /etc/hosts | |
echo "127.0.0.1 $server_name" >> /etc/hosts |