Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 594240 Details for
Bug 835155
RHEL6 version of NTP does not support signed responses
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Proposed SysVinit control script for ntpd (from previous Fedora package)
ntpd.init (text/plain), 1.88 KB, created by
Giuseppe Ragusa
on 2012-06-25 17:13:10 UTC
(
hide
)
Description:
Proposed SysVinit control script for ntpd (from previous Fedora package)
Filename:
MIME Type:
Creator:
Giuseppe Ragusa
Created:
2012-06-25 17:13:10 UTC
Size:
1.88 KB
patch
obsolete
>#!/bin/bash ># ># ntpd This shell script takes care of starting and stopping ># ntpd (NTPv4 daemon). ># ># chkconfig: - 58 74 ># description: ntpd is the NTPv4 daemon. \ ># The Network Time Protocol (NTP) is used to synchronize the time of \ ># a computer client or server to another server or reference time source, \ ># such as a radio or satellite receiver or modem. > >### BEGIN INIT INFO ># Provides: ntpd ># Required-Start: $network $local_fs $remote_fs ># Required-Stop: $network $local_fs $remote_fs ># Should-Start: $syslog $named ntpdate ># Should-Stop: $syslog $named ># Short-Description: start and stop ntpd ># Description: ntpd is the NTPv4 daemon. The Network Time Protocol (NTP) ># is used to synchronize the time of a computer client or ># server to another server or reference time source, such ># as a radio or satellite receiver or modem. >### END INIT INFO > ># Source function library. >. /etc/init.d/functions > ># Source networking configuration. >. /etc/sysconfig/network > >prog=ntpd >lockfile=/var/lock/subsys/$prog > >start() { > [ "$EUID" != "0" ] && exit 4 > [ "$NETWORKING" = "no" ] && exit 1 > [ -x /usr/sbin/ntpd ] || exit 5 > [ -f /etc/sysconfig/ntpd ] || exit 6 > . /etc/sysconfig/ntpd > > # Start daemon. > echo -n $"Starting $prog: " > daemon $prog -u ntp:ntp -p /var/run/ntpd.pid $OPTIONS > RETVAL=$? > echo > [ $RETVAL -eq 0 ] && touch $lockfile > return $RETVAL >} > >stop() { > [ "$EUID" != "0" ] && exit 4 > echo -n $"Shutting down $prog: " > killproc $prog > RETVAL=$? > echo > [ $RETVAL -eq 0 ] && rm -f $lockfile > return $RETVAL >} > ># See how we were called. >case "$1" in > start) > start > ;; > stop) > stop > ;; > status) > status $prog > ;; > restart|force-reload) > stop > start > ;; > try-restart|condrestart) > if status $prog > /dev/null; then > stop > start > fi > ;; > reload) > exit 3 > ;; > *) > echo $"Usage: $0 {start|stop|status|restart|try-restart|force-reload}" > exit 2 >esac
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 835155
:
594239
| 594240 |
594241