Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8339515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T04:54:15+00:00 2026-06-09T04:54:15+00:00

I am only using apache-ant and not ant-contrib I have an ant target <target

  • 0

I am only using apache-ant and not ant-contrib

I have an ant target

<target name="stop" depends="init" >
...
</target>

In which i want to invoke exec task.

If the value of a variable HOST_NAME is all

<exec executable="${executeSSH.shell}" >
    <arg value="-h ${HOST_NAME}" />
    <arg value="-i ${INSTANCE}" />
    <arg value="-w 10" />
    <arg value="-e ${myOperation.shell} " />
    <arg value=" -- " />
    <arg value="${INSTANCE} ${USERNAME} ${PASSWORD}" />
</exec>

If the value of a variable HOST_NAME is anything else

<exec executable="${executeSSH.shell}">
    <arg value="-h ${HOST_NAME}" />
    <arg value="-i ${INSTANCE}" />
    <arg value="-e ${myOperation.shell} " />
    <arg value=" -- " />
    <arg value="${INSTANCE} ${USERNAME} ${PASSWORD}" />
</exec>

But i would like to write only one task and not to repeatexec. I have used HOST_NAME parameter but what to do about the second parameter -w 10 which is different in both calls.

I have tried a couple of ways by searching on SO by using condition and if else but nothing seems to be applicable for exec or arg.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T04:54:16+00:00Added an answer on June 9, 2026 at 4:54 am

    Try using macrodef. The following example is not tested.

    <macrodef name="callSSH">
        <element name="extArgs" optional="y"/>
        <sequential>
            <exec executable="${executeSSH.shell}" >
                <arg value="-h ${HOST_NAME}" />
                <arg value="-i ${INSTANCE}" />
                <extArgs/>
                <arg value="-e ${myOperation.shell} " />
                <arg value=" -- " />
                <arg value="${INSTANCE} ${USERNAME} ${PASSWORD}" />
            </exec>
        </sequential>
    </macrodef> 
    <target name="stop" depends="init" >
        <if>
           <equals arg1="${HOST_NAME}" arg2="all"/>
            <then>
                <callSSH>
                    <extArgs>
                        <arg value="-w 10" />
                    </extArgs>
                </callSSH>
            </then>
            <else>
                <callSSH>
                    <extArgs/>
                </callSSH>
            </else>
        </if>
    </target>
    

    Or if you don’t use contribs:

    <target name="sshExecWithHost" if="HOST_NAME"> 
        <callSSH>
            <extArgs>
                <arg value="-w 10" />
            </extArgs>
        </callSSH>
    </target>
    
    <target name="sshExecNoHost" unless="HOST_NAME">
        <callSSH/>
    </target>
    
    <target name="sshSwitch" depends="sshExecNoHost,sshExecWithHost">
    </target>
    
    <target name="stop" depends="init,sshSwitch" >
    </target>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Rails app that is served by Apache and Passenger, using only
I have one page website only using HTML, CSS and JavaScript. I want to
I am using apache ant to generate javadoc for my project. I have a
I have a Java project that builds using Apache Ant to a website. This
I want to set password for one directory using Apache server so that only
is it possible to resolve objects which use generics in unity only using interfaces.
We have a large web app installation, using Apache/Tomcat/Jasper and jboss. In development environment,
I am using apache-nutch-1.4 with apache-solr-3.2.0 I have successfully integrated NUTCH with SOLR when
I have tried search using Apache SOLR. I have done with the PHP client
I have a simple form that uploads a selected file using Apache Commons Upload

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.