Skip to content

Update#

Howto's#

Defaults#

Commented File-structure#

update.xml
<?xml version="1.0" encoding="utf-8"?>
<update version="1.34.0">
  <!-- check for updates
       type: boolean -->
  <check>true</check>
  <!-- automatically install updates if available
       type: boolean -->
  <autoInstall>false</autoInstall>
  <!-- url for update server
       type: string -->
  <url>https://update.auerswald.de</url>
  <!-- defines when to execute a given task. -->
  <execution>
    <!-- type: boolean -->
    <mondays>false</mondays>
    <!-- type: boolean -->
    <tuesdays>false</tuesdays>
    <!-- type: boolean -->
    <wednesdays>false</wednesdays>
    <!-- type: boolean -->
    <thursdays>false</thursdays>
    <!-- type: boolean -->
    <fridays>false</fridays>
    <!-- type: boolean -->
    <saturdays>false</saturdays>
    <!-- type: boolean -->
    <sundays>false</sundays>
    <!-- a time in HH:MM format
         type: string
         matched against: '^((2[0-3]|[0-1]?[0-9]):[0-5][0-9])?$' -->
    <time></time>
    <!-- add a random delay in seconds
         type: boolean -->
    <useRandomDelay>false</useRandomDelay>
    <!-- minimal delay (in seconds) to apply to the given time
         type: integer -->
    <minimalRandomDelay>60</minimalRandomDelay>
    <!-- maximum delay (in seconds) to apply to the given time
         type: integer -->
    <maximalRandomDelay>3600</maximalRandomDelay>
  </execution>
</update>