Hide Forgot
Description of problem: There isn't an ntpd service as there was in previous versions of Fedora as described here : http://fedoraproject.org/wiki/Docs/Drafts/AGBeta/NTP Version-Release number of selected component (if applicable): 26.3.fc15 How reproducible: Follow below steps Steps to Reproduce: 1. (Check it is installed) yum info ntp 2. (Start ntpd) su -c 'systemctl start ntpd' 3. Actual results: Name : ntp Arch : x86_64 Version : 4.2.6p3 Release : 4.fc15 Size : 1.8 M Repo : installed From repo : koji-override-0 Summary : The NTP daemon and utilities URL : http://www.ntp.org License : (MIT and BSD and BSD with advertising) and GPLv2 Description : The Network Time Protocol (NTP) is used to synchronize a : computer's time with another reference time source. This package : includes ntpd (a daemon which continuously adjusts system time) : and utilities used to query and configure the ntpd daemon. : : Perl scripts ntp-wait and ntptrace are in the ntp-perl package and : the ntpdate program is in the ntpdate package. The documentation : is in the ntp-doc package. Failed to issue method call: Unit name ntpd is not valid. Expected results: The unit call is valid. ntp starts. Additional info: It should be started by default in every install imo.
(In reply to comment #0) > Steps to Reproduce: > 1. (Check it is installed) yum info ntp > 2. (Start ntpd) su -c 'systemctl start ntpd' You want: systemctl start ntpd.service or service ntpd start (The 'service' command is a wrapper for systemctl, kept for compatibility.)
Thanks. My mistake. Sorry.