[wpkg-users] inquiry

Rainer Meier r.meier at wpkg.org
Sat Sep 10 11:16:10 CEST 2011


Hi,

On 10.09.2011 04:28, Make Compile wrote:
> this is the contain of my packages.xml.
>
>
> <package
> id="time"
> name="time sync"
> revision="1"
> reboot="false"
> notify="false"
> execute="always">
>
> <install cmd="net time \\192.1.2.4 /set /yes" />
>
> </package>

If this is really the full content of package.xml then you miss the XML root 
element: <packages />

So it should read as follows:

<?xml version="1.0" encoding="utf-8" ?>
<packages>
   <package
     id="time"
     name="time sync"
     revision="1"
     reboot="false"
     notify="false"
     execute="always">

     <install cmd="net time \\192.1.2.4 /set /yes" />

   </package>
</packages>

You can also use any decent XML editor (Eclipse, Notepad++...) and use the XSD 
files included in the delivery to verify your XML files.

br,
Rainer



More information about the wpkg-users mailing list