<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: daylight saving time in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760788#M259337</link>
    <description>does the script just verify that the time is adjusted accordingly?</description>
    <pubDate>Tue, 28 Mar 2006 17:28:52 GMT</pubDate>
    <dc:creator>chad_c</dc:creator>
    <dc:date>2006-03-28T17:28:52Z</dc:date>
    <item>
      <title>daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760786#M259335</link>
      <description>how do i ensure my HPUX 11.11i servers are set to auto adjust for daylight saving time?</description>
      <pubDate>Tue, 28 Mar 2006 17:07:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760786#M259335</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T17:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760787#M259336</link>
      <description>Run the attached Perl script, dst.pl. Invoke as dst.pl -u for full usage but you can simply run as "dst.pl" to display the exact second before and after the transition. If you are running multiple TZ's then test it thusly:&lt;BR /&gt;&lt;BR /&gt;TZ=EST5EDT dst.pl&lt;BR /&gt;TZ=CST6CDT dst.pl&lt;BR /&gt;TZ=MST7MDT dst.pl&lt;BR /&gt;&lt;BR /&gt;You many need to change to "shebang" line from #!/usr/bin/perl to something like "#!/opt/perl5/bin/perl" or create a softlink from your perl install bin to /usr/bin/perl.&lt;BR /&gt;&lt;BR /&gt;Because this Perl scripts uses the same underlying libc functions as do the standard commands like date, if this work then the other utilities work as well.&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Mar 2006 17:14:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760787#M259336</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-28T17:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760788#M259337</link>
      <description>does the script just verify that the time is adjusted accordingly?</description>
      <pubDate>Tue, 28 Mar 2006 17:28:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760788#M259337</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T17:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760789#M259338</link>
      <description>What it actually does is find the very first and last seconds in a given year. It then converges on the exact seconds that the localtime() isdst field changes. When those transition points are found strftime() is called to display seconds - 1 and seconds for each transition.&lt;BR /&gt;&lt;BR /&gt;The bottom line it that this is a method that uses the same standard routines that UNIX commands and programs use -- so if this works and displays the expected times then the others also work when that time comes.&lt;BR /&gt;&lt;BR /&gt;Bear in mind that your UNIX box does not actually change time; it simply counts seconds since 00:00:00 1-Jan-1970 UTC. What changes is the way these epoch seconds are displayed. HP-UX is unique in that the time transitions are controlled by a textfile, /usr/lib/tztab. Man tztab for details.</description>
      <pubDate>Tue, 28 Mar 2006 17:39:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760789#M259338</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-28T17:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760790#M259339</link>
      <description>By the way, if you happen to have TZ settings that do not change (either by intent or accident) then dst.pl returns a null result and sets the exit code to a non-zero value.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;TZ=GMT0 dst.pl -d&lt;BR /&gt;STAT=${?}&lt;BR /&gt;echo "Status = ${STAT}"&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Mar 2006 17:49:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760790#M259339</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-28T17:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760791#M259340</link>
      <description>so in other words if i see the following output, then the server is going to auto adjust according to daylight saving :)&lt;BR /&gt;&lt;BR /&gt;txovo# perl /tmp/tz.pl&lt;BR /&gt;Sun Apr 02 01:59:59 CST 2006 --&amp;gt; Sun Apr 02 03:00:00 CDT 2006&lt;BR /&gt;Sun Oct 29 01:59:59 CDT 2006 --&amp;gt; Sun Oct 29 01:00:00 CST 2006</description>
      <pubDate>Tue, 28 Mar 2006 17:58:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760791#M259340</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T17:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760792#M259341</link>
      <description>so in other words if i see the following output, then the server is going to auto adjust (or i should say 'accurately reflect') according to daylight saving :)&lt;BR /&gt;&lt;BR /&gt;txovo# perl /tmp/tz.pl&lt;BR /&gt;Sun Apr 02 01:59:59 CST 2006 --&amp;gt; Sun Apr 02 03:00:00 CDT 2006&lt;BR /&gt;Sun Oct 29 01:59:59 CDT 2006 --&amp;gt; Sun Oct 29 01:00:00 CST 2006</description>
      <pubDate>Tue, 28 Mar 2006 17:59:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760792#M259341</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T17:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760793#M259342</link>
      <description>Shalom chad,&lt;BR /&gt;&lt;BR /&gt;Answer to last question: Yes.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 28 Mar 2006 18:06:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760793#M259342</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-03-28T18:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760794#M259343</link>
      <description>Does a hog like slop? Is the Pope Catholic?</description>
      <pubDate>Tue, 28 Mar 2006 18:10:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760794#M259343</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-28T18:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760795#M259344</link>
      <description>someone always has to be a smart A$$</description>
      <pubDate>Tue, 28 Mar 2006 18:31:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760795#M259344</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T18:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760796#M259345</link>
      <description>however, to answer your question as to whether a hog likes slop, you may have to go and ask the pope&lt;BR /&gt;&lt;BR /&gt;thanks for the info.</description>
      <pubDate>Tue, 28 Mar 2006 18:37:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760796#M259345</guid>
      <dc:creator>chad_c</dc:creator>
      <dc:date>2006-03-28T18:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: daylight saving time</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760797#M259346</link>
      <description>No, having slopped hogs at an early age, I can assure you that they eat it (and generally anything else) with great relish.</description>
      <pubDate>Tue, 28 Mar 2006 18:43:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/daylight-saving-time/m-p/3760797#M259346</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-28T18:43:51Z</dc:date>
    </item>
  </channel>
</rss>

