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.
22 lines
737 B
Text
22 lines
737 B
Text
#example file /etc/ppp/ip-up.local
|
|
#originally from SuSE distribution
|
|
#modified for chrony
|
|
cat <<EOF | /usr/local/bin/chronyc
|
|
password mysecret
|
|
online
|
|
EOF
|
|
# update all of the dynamic servers and save the result.
|
|
# do not wait for response
|
|
|
|
nohup /usr/local/bin/DNSchronyUPDATE mysecret >/dev/null 2>&1 &
|
|
#other stuff who knows?
|
|
|
|
# The following lines added for Linux-HA support # Heartbeat
|
|
DEVFILE=`echo $DEVICE | sed -e 's!^/dev/!!' -e 's!/!.!g'` # Heartbeat
|
|
OUTFILE=/var/run/ppp.d/$DEVFILE # Heartbeat
|
|
( # Heartbeat
|
|
echo "$IPREMOTE" # Heartbeat
|
|
echo "$IFNAME" # Heartbeat
|
|
echo "$PPPD_PID" # Heartbeat
|
|
echo "$IPLOCAL" # Heartbeat
|
|
) > $OUTFILE # Heartbeat
|