mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-07 15:45:06 -05:00
Equivalent to V1.19.99.1
This is a verbatim copy of the files at that stage of the repository that was built from the CVS import. It allows future development to see a bit of recent history, but without carrying around the baggage going back to 1997. If that is really required, git grafts can be used.
This commit is contained in:
95
contrib/andrew_bishop_2
Normal file
95
contrib/andrew_bishop_2
Normal file
@@ -0,0 +1,95 @@
|
||||
From amb@gedanken.demon.co.uk Wed Sep 1 22:26:59 1999
|
||||
Date: Thu, 19 Aug 1999 17:30:14 +0100
|
||||
From: Andrew M. Bishop <amb@gedanken.demon.co.uk>
|
||||
To: richard@rrbcurnow.freeserve.co.uk
|
||||
Subject: [amb@gedanken.demon.co.uk: Chrony and laptop configuration]
|
||||
|
||||
Hi,
|
||||
|
||||
What you need to do is replace 10.0.0.0 with the network of the
|
||||
freeserve nameservers in the two scripts below.
|
||||
|
||||
Other than that you can use it as is.
|
||||
|
||||
------- Start of forwarded message -------
|
||||
From: "Andrew M. Bishop" <amb@gedanken.demon.co.uk>
|
||||
To: richard@rrbcurnow.freeserve.co.uk
|
||||
Subject: Chrony and laptop configuration
|
||||
Date: Sat, 31 Jul 1999 11:02:04 +0100
|
||||
|
||||
Attached are the ip-up and ip-down files that I use for chrony.
|
||||
(Actually because of the way that debian works they are separate file
|
||||
in the /etc/ppp/ip-up.d directory that are run in a SysV init style).
|
||||
|
||||
They rely on the presence of an 'ipparam demon' or 'ipparam freeserve'
|
||||
line in the PPP options file.
|
||||
|
||||
-------------------- /etc/ppp/ip-up --------------------
|
||||
#!/bin/sh -f
|
||||
#
|
||||
# A script to start chrony
|
||||
#
|
||||
|
||||
PPP_IPPARAM="$6"
|
||||
|
||||
if [ $PPP_IPPARAM = "demon" ]; then
|
||||
|
||||
/usr/local/bin/chronyc << EOF
|
||||
password xxxxxxx
|
||||
online 255.255.255.0/158.152.1.0
|
||||
online 255.255.255.0/194.159.253.0
|
||||
EOF
|
||||
|
||||
fi
|
||||
|
||||
if [ $PPP_IPPARAM = "freeserve" ]; then
|
||||
|
||||
/usr/local/bin/chronyc << EOF
|
||||
password xxxxxxx
|
||||
online 255.255.255.0/10.0.0.0
|
||||
EOF
|
||||
|
||||
fi
|
||||
-------------------- /etc/ppp/ip-up --------------------
|
||||
|
||||
-------------------- /etc/ppp/ip-down --------------------
|
||||
#!/bin/sh -f
|
||||
#
|
||||
# A script to stop chrony
|
||||
#
|
||||
|
||||
PPP_IPPARAM="$6"
|
||||
|
||||
if [ $PPP_IPPARAM = "demon" ]; then
|
||||
|
||||
/usr/local/bin/chronyc << EOF
|
||||
password xxxxxxx
|
||||
offline 255.255.255.0/158.152.1.0
|
||||
offline 255.255.255.0/194.159.253.0
|
||||
EOF
|
||||
|
||||
fi
|
||||
|
||||
if [ $PPP_IPPARAM = "freeserve" ]; then
|
||||
|
||||
/usr/local/bin/chronyc << EOF
|
||||
password xxxxxxx
|
||||
offline 255.255.255.0/10.0.0.0
|
||||
EOF
|
||||
|
||||
fi
|
||||
-------------------- /etc/ppp/ip-down --------------------
|
||||
|
||||
--
|
||||
Andrew.
|
||||
----------------------------------------------------------------------
|
||||
Andrew M. Bishop amb@gedanken.demon.co.uk
|
||||
http://www.gedanken.demon.co.uk/
|
||||
------- End of forwarded message -------
|
||||
|
||||
--
|
||||
Andrew.
|
||||
----------------------------------------------------------------------
|
||||
Andrew M. Bishop amb@gedanken.demon.co.uk
|
||||
http://www.gedanken.demon.co.uk/
|
||||
|
||||
Reference in New Issue
Block a user