Skip to content

Commit

Permalink
s/timezone/time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed Jun 29, 2017
1 parent 9635b72 commit c906a18
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ H H(9-16)/2 * * 1-5
# once a day on the 1st and 15th of every month except December
H H 1,15 1-11 *
</pre>
<h3>Timezone specification</h3>
<h3>Time zone specification</h3>
<j:invokeStatic className="java.util.TimeZone" method="getDefault" var="currentTimeZone"/>
<p>
Periodic tasks are normally executed at the scheduled time in the timezone of
Periodic tasks are normally executed at the scheduled time in the time zone of
the Jenkins master JVM (currently <strong>${currentTimeZone.getID()}</strong>).
This behavior can optionally be changed by specifying an alternative timezone in the
This behavior can optionally be changed by specifying an alternative time zone in the
first line of the field.
Timezone specification starts with <code>TZ=</code>, followed by the ID of a time zone.
Time zone specification starts with <code>TZ=</code>, followed by the ID of a time zone.
</p>
<p>
Complete example of a schedule with a timezone specification:
Complete example of a schedule with a time zone specification:
</p>
<pre>
TZ=Europe/London
Expand All @@ -102,7 +102,7 @@ H H 1,15 1-11 *
H(0-30) 17 * * *
</pre>
<p>
The supported timezones depend on the Java runtime Jenkins is running on. The list of supported time zone IDs on this instance is:
The supported time zones depend on the Java runtime Jenkins is running on. The list of supported time zone IDs on this instance is:
</p>
<j:invokeStatic className="java.util.TimeZone" method="getAvailableIDs" var="timeZones"/>
<ul>
Expand Down

0 comments on commit c906a18

Please sign in to comment.