Created
December 15, 2010 16:33
-
-
Save nfabre/742209 to your computer and use it in GitHub Desktop.
build.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project name="test" basedir="." default="buidit"> | |
<!-- definition du type --> | |
<typedef name="vmconnex" classname="phing.types.custom.vmware.datatype.Connexion" /> | |
<taskdef name="vmwareUserCreate" classname="phing.tasks.vmware.vmware.user.CreateTask" /> | |
<!-- Parametrage --> | |
<vmconnex | |
id="mainconnex" | |
username="login" | |
password="password" | |
/> | |
<target name="buidit"> | |
<vmwareUserCreate username="nfa" password="pwd" description="my delegated admin auto-agent software" > | |
<vmconnex refid="mainconnex" /> | |
</vmwareUserCreate> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment