Bug 3705
| Summary: | "date" gets munged | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | michael.waite |
| Component: | clock | Assignee: | Cristian Gafton <gafton> |
| Status: | CLOSED NOTABUG | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 6.0 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | alpha | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-09-25 03:08:53 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
michael.waite
1999-06-24 14:04:56 UTC
Does it boot through the ARC or SRM console? ------- Email Received From "Waite, Michael" <Michael.Waite> 06/24/99 12:24 ------- Does it jump forward only on reboots, or spontaneously during
normal use?
If it only jumps on reboots, you might want to force the SRM
mode on 'clock' - apply the following patch to /etc/rc.d/rc.sysinit:
--- rc.sysinit.foo Thu Jun 24 15:07:58 1999
+++ rc.sysinit Thu Jun 24 15:08:47 1999
@@ -307,6 +307,7 @@
rm -f /tmp/.s.PGSQL.*
# Set the system clock.
+SRM=0
ARC=0
UTC=0
if [ -f /etc/sysconfig/clock ]; then
@@ -342,6 +343,12 @@
yes|true)
CLOCKFLAGS="$CLOCKFLAGS -A";
CLOCKDEF="$CLOCKDEF (arc)";
+ ;;
+ esac
+ case "$SRM" in
+ yes|true)
+ CLOCKFLAGS="$CLOCKFLAGS -S";
+ CLOCKDEF="$CLOCKDEF (srm)";
;;
esac
fi
and then add a line that says 'SRM=true' to /etc/sysconfig/clock.
Does that help at all?
Closed, lack of input. |