home *** CD-ROM | disk | FTP | other *** search
/ tusportal.tus.k12.pa.us / tusportal.tus.k12.pa.us.tar / tusportal.tus.k12.pa.us / Wyse / latest-image.raw / 0.img / usr / sbin / ntpdate < prev    next >
Text File  |  2010-05-08  |  1KB  |  46 lines

  1. #!/bin/bash
  2.  
  3. # Copyright 2008 Novell AG. All Rights Reserved.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9.  
  10.  
  11. cat<<EOF
  12.        !!!!!!!!!!!!!!  WARNING !!!!!!!!!!!!!!!!!!
  13.  
  14. The ntpdate program is deprecated and should not be used any more.  To
  15. quote the upstream ntp developers:
  16.  
  17.   "The functionality ntpdate offered is now provided by the ntpd daemon
  18.   itself.  If you call ntpd with the command line option -q it will
  19.   retrieve the current time and set it accordingly."
  20.  
  21. Please check the Network Time Protocol (NTP) daemon man page and
  22.   http://support.ntp.org/bin/view/Dev/DeprecatingNtpdate
  23. for further information.
  24.  
  25. You can replace the ntpdate call with "rcntp ntptimeset" to achieve an
  26. inital poll of the servers specified in /etc/ntp.conf.
  27.  
  28. The program /usr/sbin/sntp offers comparable functionality to ntpdate.
  29. Specifically
  30.   sntp -P no -r pool.ntp.org
  31. is equivalent to
  32.   ntpdate pool.ntp.org
  33.  
  34. For further details please refer to the man page of sntp.
  35. EOF
  36.  
  37. if [ $# -gt 0 ]
  38. then
  39.     a=$(($#-1))
  40.     shift $a
  41.  
  42.     /usr/sbin/sntp -F -P no -r $1
  43. fi
  44.  
  45. exit 0;
  46.