Skip to content

Commit

Permalink
Remove requirement for nodefilters before showing run box and
Browse files Browse the repository at this point in the history
fix form parameters for running on unfiltered node results
  • Loading branch information
gschueler committed Oct 29, 2010
1 parent 2f88ef9 commit 2abbdfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rundeckapp/grails-app/views/framework/nodes.gsp
Expand Up @@ -359,13 +359,16 @@
</g:if>
<td style="text-align:left;vertical-align:top;" id="${rkey}nodescontent">

<g:if test="${wasfiltered && session.project && total>0}">
<g:if test="${session.project && total>0}">
<div class=" runbox" id="runbox">
<g:form action="execAndForget" controller="scheduledExecution" method="post" style="display:inline">
Command:
<g:img file="icon-small-shell.png" width="16px" height="16px"/>
<g:hiddenField name="project" value="${session.project}"/>
<g:hiddenField name="doNodedispatch" value="true"/>
<g:if test="${!wasfiltered}">
<g:hiddenField name="nodeIncludeName" value=".*"/>
</g:if>
<g:hiddenField name="nodeKeepgoing" value="true"/>
<g:hiddenField name="nodeThreadcount" value="1"/>
<g:hiddenField name="description" value=""/>
Expand Down

0 comments on commit 2abbdfb

Please sign in to comment.