[Bug 722133] Re: ntpdate script doesn't load configuration file

2011-02-21 Thread Tomas Bosak
In my case the configuration file wasn't loaded until I changed the
script file. Therefore time in my system wasn't correctly set according
to configuration. I forgot to mention that the OS is Ubuntu Server
edition. By necessary configuration you mean the /etc/default/ntpdate
file?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.
https://bugs.launchpad.net/bugs/722133

Title:
  ntpdate script doesn't load configuration file

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 722133] Re: ntpdate script doesn't load configuration file

2011-02-21 Thread Tomas Bosak
The real problem may be in script /usr/sbin/ntpdate-debian:

this line
NTPSERVERS=$(sed -rne 's/^(servers?|peer) ([-_.:[:alnum:]]+).*$/\2/p'
$file ...

could not correctly parsed file below:

/etc/ntp.conf:
restrict -6 default ignore
restrict -4 default ignore

restrict -6 ::1 nomodify notrap nopeer kod
restrict -4 127.0.0.1 mask 255.255.255.255 nomodify notrap nopeer kod

server -6 ntp.ipv6.my-domain.tld prefer minpoll 7 maxpoll 14
restrict -6 ntp.ipv6.my-domain.tld nomodify notrap nopeer kod

server -4 ntp.my-domain.tld minpoll 7 maxpoll 14
restrict -4 ntp.my-domain.tld mask 255.255.255.255 nomodify notrap
nopeer kod

driftfile /var/lib/ntp/ntp.drift
logfile /var/log/ntp.log
statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.
https://bugs.launchpad.net/bugs/722133

Title:
  ntpdate script doesn't load configuration file

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 722133] [NEW] ntpdate script doesn't load configuration file

2011-02-20 Thread Tomas Bosak
Public bug reported:

Binary package hint: ntpdate

ntpdate script (located in /etc/network/if-up.d/ntpdate) doesn't load
configuration from file (located in /etc/default/ntpdate).

1) OS: Ubuntu 11.04 (natty)
2) Package version: 1:4.2.6.p2+dfsg-1ubuntu4 and previous versions
3) Load configuration file
4) Configuration file isn't loaded

Solution:
Add these lines to script (/etc/network/if-up.d/ntpdate):

if [ -r /etc/default/ntpdate ]; then
. /etc/default/ntpdate
OPTS=${OPTS} ${NTPOPTIONS} ${NTPSERVERS}
fi

Complete script:

#!/bin/sh

set -e

PATH=/sbin:/bin:/usr/sbin:/usr/bin

# This is a heuristic:  The idea is that if a static interface is brought
# up, that is a major event, and we can put in some extra effort to fix
# the system time.  Feel free to change this, especially if you regularly
# bring up new network interfaces.
if [ $METHOD = static ]; then
OPTS=-b
fi

if [ $METHOD = loopback ]; then
exit 0
fi

# Check whether ntpdate was removed but not purged; it's useless to wait for
# it in that case.
if [ ! -x /usr/sbin/ntpdate-debian ]  [ -d /usr/sbin ]; then
exit 0
fi

if [ -r /etc/default/ntpdate ]; then
. /etc/default/ntpdate
OPTS=${OPTS} ${NTPOPTIONS} ${NTPSERVERS}
fi

(

# This is for the case that /usr will be mounted later.
if [ -r /lib/udev/hotplug.functions ]; then
. /lib/udev/hotplug.functions
wait_for_file /usr/sbin/ntpdate-debian
fi

LOCKFILE=/var/lock/ntpdate-ifup

# Avoid running more than one at a time
if [ -x /usr/bin/lockfile-create ]; then
lockfile-create $LOCKFILE
lockfile-touch $LOCKFILE 
LOCKTOUCHPID=$!
fi

invoke-rc.d --quiet ntp stop /dev/null 21 || true

/usr/sbin/ntpdate-debian -s $OPTS 2/dev/null || :

invoke-rc.d --quiet ntp start /dev/null 21 || true

if [ -x /usr/bin/lockfile-create ] ; then
kill $LOCKTOUCHPID
lockfile-remove $LOCKFILE
fi

) 

** Affects: ntp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.
https://bugs.launchpad.net/bugs/722133

Title:
  ntpdate script doesn't load configuration file

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs