ntp-client.confd 776 B

12345678910111213141516171819202122
  1. # /etc/conf.d/ntp-client
  2. # Command to run to set the clock initially
  3. # Most people should just leave this line alone ...
  4. # however, if you know what you're doing, and you
  5. # want to use ntpd to set the clock, change this to 'ntpd'
  6. NTPCLIENT_CMD="ntpdate"
  7. # Options to pass to the above command
  8. # This default setting should work fine but you should
  9. # change the default 'pool.ntp.org' to something closer
  10. # to your machine. See http://www.pool.ntp.org/ or
  11. # try running `netselect -s 3 pool.ntp.org`.
  12. NTPCLIENT_OPTS="-s -b -u \
  13. 0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org \
  14. 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org"
  15. # If you use hostnames above, then you should depend on dns
  16. # being up & running before we try to run. Otherwise, you
  17. # can disable this.
  18. rc_use="dns"