Skip to content

Instantly share code, notes, and snippets.

@muffik
Created March 22, 2019 04:27
Show Gist options
  • Save muffik/0b3d9ac8f3650d4cb2f3e6ae332122f5 to your computer and use it in GitHub Desktop.
Save muffik/0b3d9ac8f3650d4cb2f3e6ae332122f5 to your computer and use it in GitHub Desktop.
<project>
<target name="copy-configs" >
<property name="dest" value="/it/azh-gp-uzdo/integration" />
<!--delete dir="${dest}/card"/-->
<delete dir="${dest}/lists"/>
<delete dir="${dest}/metadata"/>
<delete dir="${dest}/reports"/>
<delete dir="${dest}/search"/>
<delete dir="${dest}/system"/>
<delete dir="${dest}/uzdo-local"/>
<delete dir="${dest}/uzdo2-local"/>
<!-- copydir src="../../../card" dest="${dest}/card"/-->
<copydir src="../../../lists" dest="${dest}/lists"/>
<copydir src="../../../metadata" dest="${dest}/metadata"/>
<copydir src="../../../reports" dest="${dest}/reports"/>
<copydir src="../../../search" dest="${dest}/search"/>
<copydir src="../../../system" dest="${dest}/system"/>
<copydir src="../../../uzdo-local" dest="${dest}/uzdo-local"/>
<copydir src="../../../uzdo2-local" dest="${dest}/uzdo2-local"/>
<copy file="../../../bootstrap.xml" tofile="${dest}/bootstrap.xml" />
<copy file="../../../environment.xml" tofile="${dest}/environment.xml" />
</target>
<target name="update-UZDO-integration" >
<exec executable='/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/wsadmin.sh -conntype NONE -lang jython -user wasadmin -password 1 -f "../wsadmin/install_muzedo_integration.py"' />
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment