Packages.xml

This document in other languages: French Spanish


packages.xml is a file which defines how to install, upgrade and uninstall software packages. In other words, it is a list of all packages and scripts that can be deployed or executed on workstations.

This file has to be placed in the same directory as wpkg.js.

WPKG will not work without this file.

packages.xml structure

A basic structure of packages.xml is as follows:

<packages>
<package
id="wpkg1"
name="Windows Packager sample 1"
revision="1"
reboot="false"
priority="0">
<check type="registry" condition="exists" path="HKLM\Software\wpkg\full\key\not\part\of\it" />
<check type="file" condition="exists" path="%PROGRAMFILES%\wpkg\wpkg.bat" />
<check type="uninstall" condition="exists" path="WPKG" />

<install cmd='msiexec /i (path to msi)'>
<exit code="0" />
</install>

<remove  cmd='%PROGRAMFILES%\uninstall\uninst.exe -quiet' />

<upgrade cmd='msiexec /i (path to msi)' />

</package>

</packages>

Each package has the following attributes:

  • id - a unique identifier representing the package. Should be short and to the point.
  • name - longer textual description of the package. This should be the full product name.
  • revision - user created version number to represent the "version" of the specific WPKG package for this application. If you change the package, increment it. It can be the revision that the WPKG package is for, or the software application's version (though note such a strategy won't leave you room to change your WPKG package, for example when making an improvement or fixing a bug in the XML, other than when the software application is also upgraded).
    • The following formats are supported:
      • an integer (1, 10, 1000, etc.)
      • dotted revision numbers (1.1, 2.1.4, 3.200.3987, etc.) ... introduced with WPKG 1.0
      • volatile revisions (1.2RC1, 1.5I32, 2.73M24, 1.65.b, etc.) ... introduced with WPKG 1.1.1 (see the changelog for more examples)
    • If you like to keep track of the date you have last changed the package, because there is no better revision number, you can use the format YYYY.MM.DD (2010.07.27, etc.). If you change the package multiple times a day, you may add the time too: YYYY.MM.DD.HH.MM (2012.11.11.16.28, etc.)
    • In addition one can define a variable inside the package and use that as the revision, which is useful, if this is used in different places inside the package (package revision, path of installer, checks, etc.) ... introduced with WPKG 1.1.2:
<package 
  id="firefox"
  name="Mozilla Firefox"
  revision="%PKG_VERSION%"
  reboot="false"
  priority="10">

  <variable name="PKG_VERSION" value="3.6.8" />
  • reboot - specifies if and how the system reboots when installing, removing or upgrading a given package.
    • true - always reboot after processing this package.
    • postponed - reboot after WPKG has finished processing all packages, if the package checks are successful after the action.
    • anything else - do not cause a reboot because of this package. Other packages may still cause a reboot.
  • priority - specifies a numeric value that determines in what order a package will be installed. The higher the number, the higher the priority, and so the earlier the package will be installed compared with lower priority packages. For example:
    • 2 - installs these packages 1st
    • 1 - installs these packages 2nd
    • 0 - installs these packages 3rd

Note that a package installer with priority '5' would install before all these.

Check conditions / check type

Of course it would be unwise to launch the installer if the software is already installed. That's why there are "check conditions".

The check conditions are also used after the installer has finished to verify that the software has actually been successfully installed.

If no check statements exist in the package, WPKG will just run the install (or upgrade) commands and (as long as no error occurs) will add/update the package details in the local client database.

Check conditions are broken down into several categories:

  • Registry - Checks the registry for conditions
  • File - Verifies various information about files within the filesystem
  • Uninstall - Checks the software installation registry key (as displayed in Windows' Add/Remove Programs section) for the existence of an existing package
  • Execute - Executes a script and checks the returning errorlevel (since WPKG 1.1.0)
  • Host - checks environment/os/arch (since WPKG 1.3.0)
  • Logical can also be used

Registry

Registry checks allow you to check for the existence of or a specific value in a registry key (Note: for pre-1.0 versions, it works on a registry value only, not a registry key!).

Beware, there is a limitation of the RegRead method used by WPKG's Registry checks to query registry values which contain backslashes ('\'). See the Execute section below to use instead to address this issue.

There are two possible conditions available for registry checks: exists and equals.

exists - This checks for the existence of a registry key. If the registry key is found, the condition returns true, otherwise it returns false. If return false = software will be installed. If return true = software will not be installed.

equals - This checks a specific value of a registry key. If the registry value is found and that value is equal to the supplied value, the condition returns true, otherwise it returns false. If return false = software will be installed. If return true = software will not be installed.

Also, if you are checking the value of a DWORD, make sure to check the decimal and not the hexadecimal value, otherwise the check will return false.

Examples:

This checks for the existence of Adobe Reader within the registry:

<check type="registry" condition="exists" path="HKLM\Software\Adobe\Adobe Reader\7.0" />

This checks to see if Firefox, US English, version 1.5.0.6, is installed:

<check type="registry" condition="equals" path="HKLM\Software\Mozilla\Mozilla Firefox\CurrentVersion" value="1.5.0.6 (en-US)" />

File

File checks allow you to check for the existence of a file, check for a particular file's size, or examine version information about a file. There are several possible conditions available for file checks:

exists - This checks for the existence of a file. If the file is found, the condition returns true.

sizeequals - This checks the size of a file. If the file is found and the size equals the value supplied, the condition returns true.

versionsmallerthan - This checks the version of a particular file. If the file is found and the version is less than the supplied version number, the condition returns true.

versionlessorequal - This checks the version of a particular file. If the file is found and the version is less than or equal to the supplied version number, the condition returns true.

versionequalto - This checks the version of a particular file. If the file is found and the version is equal to the supplied version number, the condition returns true.

versiongreaterorequal - This checks the version of a particular file. If the file is found and the version is greater than or equal to the supplied version number, the condition returns true.

versiongreaterthan - This checks the version of a particular file. If the file is found and the version is greater than the supplied version number, the condition returns true.

Version 1.3.0 also added conditions for checking file dates:

datemodifyequalto - Modify date equal to

datemodifynewerthan - Modify date newer than

datemodifyolderthan - Modify date older than

datecreateequalto - Create date equal to

datecreatenewerthan - Create date newer than

datecreateolderthan - Create date older than

dateaccessequalto - Access date equal to

dateaccessnewerthan - Access date newer than

dateaccessolderthan - Access date older than


The 'value' attribute has to contain a string in the following format:

Relative timestamp (in minutes):

-100 Means the file timestamp is compared to the timestamp 100 minutes ago.

+50 Means the file timestamp is compared to the timestamp 50 minutes in the future.


Absolute timestamp in ISO 8601 format:

"2007-11-23 22:00" (22:00 local time)

"2007-11-23T22:00" (Both, "T" and space delimiter are allowed)

"2007-11-23 22:00:00" (specifies seconds which default to 0 above)

"2007-11-23 22:00:00.000" (specifies milliseconds which default to 0)


You can specify the timezone as well:

"2007-11-23 22:00+01:00" (22:00 CET)

"2007-11-23 21:00Z" (21:00 UTC/GMT = 22:00 CET)

"2007-11-23 22:00+00:00" (21:00 UTC/GMT = 22:00 CET)


File-Comparison:

Prefix your value with the '@' character in order to point to a file to which the timestamp of the file referred in path is compared.

Examples:

@%SystemRoot%\explorer.exe

@c:\myfile.txt


Special terms:

last-week Check against timestamp of exactly one week ago (7 days).

last-month Check against timestamp of exactly one month ago (30 days).

last-year Check against timestamp of exactly one year ago (365 days).

yesterday Check against timestamp of yesterday (24 hours ago).


Examples:

This checks for the existence of Adobe Reader within the filesystem:

<check type="file" condition="exists" path="%PROGRAMFILES%\Adobe\Acrobat 7.0\Reader\AcroRd32.exe" />

This checks to see if Firefox US English version 1.5.0.6 is installed based on the file size of the executable:

<check type="file" condition="sizeequals" path="%PROGRAMFILES%\Mozilla Firefox\firefox.exe" value="7183469" />

This checks whether the version of Firefox .exe that's currently installed is less than 1.5.0.6:

<check type="file" condition="versionsmallerthan" path="%PROGRAMFILES%\Mozilla Firefox\firefox.exe" value="1.5.0.6" />

Uninstall

Uninstall checks allow you to check the Microsoft software installation registry keys (as displayed in Windows' Add/Remove Programs section) for the existence of a particular package. Microsoft maintains the list of applications installed and available for uninstallation in the HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall registry key. The DisplayName is used for exists checks, and DisplayVersion for checks against the version.

pre-1.1.0 versions of WPKG have only one condition available for this option: exists.

exists - This checks for the existence of the particular software package in the installation database. If the package is found, the condition returns true. The match is case-sensitive.

Since version 1.1.0 this check is extended with several other conditions:

versionsmallerthan - This checks for the existence of a particular software package in the installation database and also checks the version of that software package. If the package is found, and the version is smaller than the supplied value, the condition returns true.

versionlessorequal - This checks for the existence of a particular software package in the installation database and also checks the version of that software package. If the package is found, and the version is less than or equal to the supplied value, the condition returns true.

versionequalto - This checks for the existence of a particular software package in the installation database and also checks the version of that software package. If the package is found, and the version is equal to the supplied value, the condition returns true.

versiongreaterorequal - This checks for the existence of a particular software package in the installation database and also checks the version of that software package. If the package is found, and the version is greater than or equal to the supplied value, the condition returns true.

versiongreaterthan - This checks for the existence of a particular software package in the installation database and also checks the version of that software package. If the package is found, and the version is greater than the supplied value, the condition returns true.

Examples:

This checks for the existence of Adobe Reader through the installation list:

<check type="uninstall" condition="exists" path="Adobe Reader 7.0" />

This checks to see if Firefox version 1.5.0.6 is installed in the installation list:

<check type="uninstall" condition="exists" path="Mozilla Firefox (1.5.0.6)" />

This checks for the existence of The Gimp 2.6.6 or higher through the installation list:

<check type="uninstall" condition="versiongreaterorequal" path="GIMP" value="2.6.6" />

Execute

Execute allows you to execute any script which checks if an application is installed. WPKG checks the exit code of the script to determine the existence of the particular software package. This type of check also allows very complex checks. For example there is a limitation of the RegRead method used by WPKG's Registry checks to query registry values which contain backslashes '\'. Now you can execute a batch script which checks for such registry values using 'reg query ...'. There are several possible conditions available for execute checks:

exitcodesmallerthan - This checks the exit code of the executed script. If the exit code is smaller than the supplied value, the condition returns true.

exitcodelessorequal - This checks the exit code of the executed script. If the exit code is less or equal to the supplied value, the condition returns true.

exitcodeequalto - This checks the exit code of the executed script. If the exit code is equal to the supplied value, the condition returns true.

exitcodegreaterorequal - This checks the exit code of the executed script. If the exit code is greater than of equal to the supplied value, the condition returns true.

exitcodegreaterthan - This checks the exit code of the executed script. If the exit code is greater than the supplied value, the condition returns true.

Examples:

This evaluates true if the exit code is negative

<check type="execute" path="\\path\to\script.cmd" condition="exitcodesmallerthan" value="0">

This evalueates true if exit code is 0 or negative

<check type="execute" path="\\path\to\script.cmd" condition="exitcodelessorequal" value="0" >

This evaluates true only if exit code is exactly 0

<check type="execute" path="\\path\to\script.cmd" condition="exitcodeequalto" value="0" >

This evaluates true if exit code is 0 or any positive number

<check type="execute" path="\\path\to\script.cmd" condition="exitcodegreaterorequal" value="0" >

This evaluates true if exit code is any positive number

<check type="execute" path="\\path\to\script.cmd" condition="exitcodegreaterthan" value="0" >

Host

Host checks were announced in 1.3.0. They appear to allow matching against at least hostname, OS, architecture and environment variables.

<check type="host" condition="hostname" value="^hostname$" />
<check type="host" condition="os" value="windows 7" />
<check type="host" condition="architecture" value="x64" />
<check type="host" condition="environment" value="PKG_VER=^$" />

Logical Conditions

There can be zero or more conditions verified during the existence checks. If no conditions are supplied, WPKG attempts to install the package regardless of whether it's currently installed or not. To facilitate using more than one condition, there is a 4th type of condition that can be added, called the logical condition. Logical conditions allow you to create multiple conditions while checking for the presence of an existing package. Logical conditions are top level conditions, with the real check conditions as subnodes in the XML.

The following logical conditions are available: not, and, or, atleast, and atmost.

  • ) both atleast and atmost do require the parameter value=

Examples:

Let's say, for the sake of argument, that you have an Adobe Reader 7.0.8 package that you want installed, but you only want it installed on workstations that are running Windows XP Service Pack 2 or higher, due to some strange incompatibility. Let's also say that some workstations can't be upgraded to Windows XP Service Pack 2 until those workstations are upgraded from 256MB of memory to 512MB of memory. For a scenario like this, you could (and probably should!) use multiple profiles and have those SP1 workstations in one profile, while the SP2 workstations are in another. However, just for example purposes, let's say all workstations are in a single profile. You can provide a logical condition in order for only those workstations running SP2 to be upgraded to Adobe Reader 7.0.8:

<check type="logical" condition="or">
   <check type="registry" condition="exists" path="HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\7.0\Installer\Updates\708" />
   <check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\CSDVersion" value="Service Pack 1" />
</check>

The 2nd condition here might seem counter intuitive, but remember that you're looking for the absence of things rather than the existence of things when you're writing check conditions. What the above condition says is "Is Adobe Reader 7.0.8 installed or is Service Pack 1 installed? If either of these conditions equates to true, the installation will be skipped. In this particular case, Adobe Reader 7.0.8 isn't installed, but the value of CSDVersion is Service Pack 1 (for the SP1 boxes) so the software will not be installed.

Once all conditions have been tested, if the final result of the conditions is equal to false, WPKG will try to execute the "install cmd".


After it's executed, WPKG will check the exit code (should be 0 in this example) *and* verify all the checks.


If *any* of the checks are not met, software is considered *not* installed - so enter these values carefully!


Also, if no checks were specified, WPKG will say that the installation have failed. Although this is useful for cases where you want to install the package every time WPKG runs, you will probably want the installation without an error - see Execute once / always for executing packages without any checks.


Remember that you don't have to specify all three check conditions, usually one is enough: if the software you are about to install will show up in Windows' Add/Remove Programs (and not all do), it is sufficient to specify just the "uninstall" check.

Actions

WPKG understands several actions: install, upgrade, downgrade, remove and download. Multiple commands for each of these actions can be listed in the config file and WPKG will execute them in the order they are listed.

The install commands are executed by WPKG when a new package comes into scope for a profile.

The upgrade commands are executed when a new revision of a package comes into scope. That is, when the revision number in the packages.xml file on the server is larger than the one in the local wpkg.xml file. Note that the upgrade commands will be run even if the check conditions are already met.

The downgrade commands are executed if the version installed on the client is newer than the one on the server side.

The remove commands are executed when a package is removed from a profile.

The download commands are always executed when used on the global package level. Since WPKG version 1.1.0 however, this command is also allowed as a sub-node of any of the other commands. This allows you to specify a download which is only downloaded for a specific command. This was implemented since it usually makes no sense to download the installation package again right before the remove commands are executed (which usually runs a local uninstall command which does not need the original installer). Note: If multiple install (or upgrade/downgrade/remove) commands are specified WPKG will download the the files of all command nodes of the same kind before starting to execute the commands in sequence.

In many of the examples in the Category:Silent_Installers section, cmd.exe is executed to perform environment variable expansion and to use start /wait to wait on the command being executed. This method of executing commands results in CMD windows appearing on screen. However, this method does not appear to be necessary. The current version of WPKG executes commands using the WScript.Shell.Exec() function and expands environment variables before execution. WPKG then waits until the command is completed before continuing.

The correct method of executing a command interpreter is to use the %comspec% environment variable, not specifying cmd.exe explicitly. This is needed to run commands that are built into the interpreter and are not separate executables.

When the output of a command (think of: copy,cacls) is too much, the command will fail. You have to redirect the output to NUL or a file (example: %command% >nul).

Typical examples:

<download url='http://wpkg.example.com/installers/some.msi' target="installers\some.msi" />
<install cmd="msiexec /qn /i %SOFTWARE%\package.msi" />
<install cmd="msiexec /qn /i %SOFTWARE%\package.msi" timeout="1800" />
<install cmd="%comspec% /c copy %SOFTWARE%\file.dll %WINDIR%" />
<install cmd="%SOFTWARE%\program.exe" workdir="%WINDIR%" />
<upgrade include='install' />
<remove cmd="msiexec /qn /x %SOFTWARE%\package.msi" />

The timeout option (Timeouts) tells WPKG how long to wait for the command to complete. It is in seconds and the default is 3600 seconds.

If the command you specify returns a value of "0" then wpkg assumes it was successful and continues with the next command, if any. If the command returns a nonzero value, then wpkg stops and logs a failure for the package. Sometimes nonzero exit codes are expected and you want to accept them. You can do this by adding exit code sections inside the install section, like this:

<install cmd="msiexec /qn /i %SOFTWARE%\package.msi" >
    <exit code="0" />
    <exit code="259" />
</install>

If you don't care about exit code, use exit code="any":

<install cmd="msiexec /qn /i %SOFTWARE%\installer.exe /silent" >
    <exit code="any" />
</install>

If you need to specify a working directory, use workdir="%PATH%":

<install cmd="%SOFTWARE%\installer.exe /silent" workdir="%WINDIR%\Temp" />

You can set a specific reboot action for certain exit codes with something like the following:

<install cmd="msiexec /qn /i %SOFTWARE%\package.msi" >
    <exit code="3010" reboot="true" />
    <exit code="0" />
</install>

The options for the exit code reboot are:

  • true - immediate reboot, without updating wpkg.xml
  • delayed - reboot once the package action is complete and wpkg.xml is updated
  • postponed - reboot once all the packages have been processed

Download definitions can be specified as follows:

<download url="http://example.org/package.exe" target="subdir/package.exe" timeout="7200" />
<install cmd="%TEMP%\subdir\file.exe some arguments" ...>
     <download url="http://example.org/file.exe" target="subdir/file.exe" />
</install>
<install cmd="%TEMP%\subdir\file2.exe some arguments" ...>
     <download url="http://example.org/file2.exe" target="subdir/file2.exe" />
</install>
<upgrade cmd="%TEMP%\subdir\update.exe arguments" ...>
     <download url="http://example.org/update.exe" target="subdir/update.exe" />
</upgrade>

This definition will simply download package.exe (global command). file.exe and file2.exe are downloaded right before their parent install commands are executed, in sequence.

In case of upgrade, it will download package.exe (global command) and update.exe before executing the upgrade command(s).

Please note that the target value for a download action is always relative to the downloadDir defined in wpkg.js (and there's currently no configuration option to change this from the default of %TEMP%).

The timeout value also defaults to the downloadTimeout defined in wpkg.js (or config.xml), 7200 if not omitted.

Action conditions

1.3 permits more flexible conditions. For example:

    <package id="pidgin" revision="1">
      <install cmd='setup-32.exe ...'>
         <condition>
           <check type="host" condition="architecture" value="x86" />
         </condition>
      </install>
      <install cmd='setup-64.exe ...'>
         <condition>
           <check type="host" condition="architecture" value="x64" />
         </condition>
      </install>
    </package>

In place of:

    <package id="pidgin" revision="1">
      <install cmd='setup-32.exe ...' architecture="x86" />
      <install cmd='setup-64.exe ...' architecture="x64" />
    </package>

The following construct would be possible too:

    <package id="pidgin" revision="1">
      <install cmd='setup-64.exe ...'>
         <condition>
           <check type="logical" condition="or">
             <check type="host" condition="architecture" value="x64" />
             <check type="host" condition="os" value="windows 7" />
             <check type="logical" condition="and">
               <check type="uninstall" condition="exists" path="some-prog" />
               <check type="registry" condition="exists" path="HKLM\..." />
             </check>
           </check>
         </condition>
      </install>
    </package>

This would execute "setup-64.exe" only if either the architecture is x64, the OS string matches "windows 7" or if "some-prog" is installed along with a registry key.



Quick examples

Other example - WPKG checks if the package is installed only in Windows' Add/Remove Programs before deciding to install it (to make sure it is not installed already):

<package
id="wpkg3"
name="Windows Packager sample 3"
revision="1"
reboot="false"
priority="1">

<!--
This is a comment.
Checks in Windows' Add/Remove Programs only.
-->
<check type="uninstall" condition="exists" path="WPKG" />

<install cmd='%PACKAGES%\package.exe /quiet /install' />

<remove  cmd='%PACKAGES%\package.exe /quiet /uninstall' />

<upgrade cmd='%PACKAGES%\package.exe /quiet /install' />

</package>


In the example below, there are no check conditions. This means that WPKG will execute it each time - so this is rather useful for executing scripts that need to be run each time the machine is booted, than installing software:

<package
id="backupfiles"
name="Makes backup of some file"
revision="1"
reboot="false"
priority="0">

<!--
This is a comment.
'''No check conditions; script will be executed *each time* wpkg.js is called - each time PC is booted.'''
-->

<install cmd='\\server\path\script.bat' />
</package>


Similar example, without any conditions, either. Note the execute="once" entry - this means that that script will be executed only once. It is useful for the tasks you want to do one time only, like disk defragmenting, some testing, changing printers etc.

<package
id="backupfiles"
name="Makes backup of some file"
revision="1"
reboot="false"
execute="once"
priority="0">

<install cmd='\\server\path\script.bat' />
</package>

Similarly, you may want to execute a program or script each time - use "always" instead of "once". For more info on this functionality, check here.

Package dependencies

Packages can also depend on other packages, see package dependencies for more info.


Individual XML package files

If you would rather keep your package XML description in separate files, you can of course do that: just create a packages directory where wpkg.js is, and place individual XML files there (i.e., thunderbird.xml, firefox.xml etc.). The syntax is the same as that of packages.xml.

Note, if you decide to keep all your packages in separate XML files, you still need a packages.xml file, which should at least contain an empty entry:

<?xml version="1.0" encoding="UTF-8"?>
<packages>
</packages>


Here is an example of an individual XML file - note that it must contain <packages> at the beginning and </packages> at the end:

<?xml version="1.0" encoding="UTF-8"?>
<packages>
 <package id="setadminpassword"
          name="Set admin password"
          revision="1"
          priority="999"
          reboot="false"
          execute="once">
       <install cmd='cmd /c net user administrator password' />
 </package>
</packages>

WARNING! Please note for this example: The password is visible in the local copy of wpkg.xml, so remove after installation, or better yet, use the command in a separate .bat file.


You can use the following script to convert/merge your individual XML files into one. (I use it for high latency networks). Note: you must run this script from within the packages directory; it ignores badly formed XML documents (and prints a warning); you should remove your packages directory afterwards; it will overwrite your packages.xml file.

#!/bin/bash
echo '<?xml version="1.0" encoding="UTF-8"?>' > ../packages.xml
echo '<packages>' >> ../packages.xml
for package in `ls *.xml`
	do
		xmlwf $package | grep "not well-formed"
		if [ "$?" == "1" ]; then
		   cat $package | sed -e :a -e 's/<\(\(\/\)*packages\)[^>]*>//g;/</N;//ba' | sed -e :a -e 's/<?xml.*>//g;/</N;//ba' >>../packages.xml
		fi
done
echo '</packages>' >> ../packages.xml

XSD Schema

This should be right from the information you can get here but it's a bit more complex than the schemas for hosts.xml and profiles.xml so please gently correct any error you may have found in this schema.

<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
	   xmlns:xs="http://www.w3.org/2001/XMLSchema">
	
	<!-- Type definitions -->
	<xs:complexType name="actionType">
		<xs:sequence minOccurs="0">
			<xs:choice maxOccurs="unbounded">
				<xs:element maxOccurs="unbounded"
					    name="exit"
					    type="exitType">
				</xs:element>
				<xs:element maxOccurs="unbounded"
					    name="download"
					    type="downloadType">
				</xs:element>
			</xs:choice>
		</xs:sequence>
		
		<xs:attribute name="cmd" type="xs:string" use="required" />
		<xs:attribute name="timeout" type="xs:unsignedShort"
			      use="optional" default="3600" />
	</xs:complexType>

	<xs:complexType name="checkType">
		<xs:sequence minOccurs="0" maxOccurs="unbounded">
			<xs:element name="check" type="checkType"></xs:element>
		</xs:sequence>
		
		<xs:attribute name="type" type="xs:string" use="required" />
		<xs:attribute name="condition" type="xs:string" use="required" />
		<xs:attribute name="path" type="xs:string" use="optional" />
		<xs:attribute name="value" type="xs:string" use="optional" />
	</xs:complexType>

	<xs:complexType name="dependencyType">
		<xs:attribute name="package-id" type="xs:string" use="required" />
	</xs:complexType>

	<xs:complexType name="downloadType">
		<xs:attribute name="url" type="xs:anyURI" use="required" />
		<xs:attribute name="target" type="xs:string" use="required" />
	</xs:complexType>

	<xs:complexType name="exitType">
		<xs:attribute name="code" type="xs:string" use="required" />
		<xs:attribute name="reboot" type="xs:string" use="optional" />
	</xs:complexType>

	<xs:complexType name="variableType">
		<xs:attribute name="name" type="xs:string" use="required" />
		<xs:attribute name="value" type="xs:string" use="required" />
	</xs:complexType>

	<!-- Actual content -->
	<xs:element name="packages">
	<xs:complexType>
	  <xs:sequence>
		<xs:element minOccurs="0" maxOccurs="unbounded" name="package">
		  <xs:complexType>
			<xs:sequence>
			  <xs:choice maxOccurs="unbounded">
				<xs:element name="include" type="dependencyType">
				</xs:element>
				<xs:element name="chain" type="dependencyType">
				</xs:element>
				<xs:element name="depends" type="dependencyType">
				</xs:element>
				
				<xs:element name="variable" type="variableType">
				</xs:element>
				
				<xs:element name="check" type="checkType">
				</xs:element>
				
				<xs:element name="download" type="downloadType">
				</xs:element>
				
				<xs:element name="install" type="actionType">
				</xs:element>
				<xs:element name="upgrade" type="actionType">
				</xs:element>
				<xs:element name="remove" type="actionType">
				</xs:element>
			  </xs:choice>
			</xs:sequence>
			
			<xs:attribute name="id" type="xs:string" use="required" />
			<xs:attribute name="name" type="xs:string" use="required" />
			<xs:attribute name="revision" type="xs:string" use="required" />
			<xs:attribute name="reboot" type="xs:string" use="required" />
			<xs:attribute name="priority" type="xs:unsignedShort"
				      use="required" />
			<xs:attribute name="execute" type="xs:string" use="optional" />
		  </xs:complexType>
		</xs:element>
	  </xs:sequence>
	</xs:complexType>
	</xs:element>
</xs:schema>

See also