summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2011-03-30 14:48:31 +0000
committerTed Trask <ttrask01@yahoo.com>2011-03-30 14:48:31 +0000
commit6969a341d6f6435ff0b172e8ba8fce5e40fe8571 (patch)
tree320ebfd6174f1d3098eed0b1e9e4e5fdf657d1da
parent6fabe1bbc8f6e6ca99aee2c77fe95de0e26e3435 (diff)
downloadacf-shorewall-6969a341d6f6435ff0b172e8ba8fce5e40fe8571.tar.bz2
acf-shorewall-6969a341d6f6435ff0b172e8ba8fce5e40fe8571.tar.xz
Deleted obsolete file
-rw-r--r--shorewall-confirmation-html.lsp37
1 files changed, 0 insertions, 37 deletions
diff --git a/shorewall-confirmation-html.lsp b/shorewall-confirmation-html.lsp
deleted file mode 100644
index 8cef35e..0000000
--- a/shorewall-confirmation-html.lsp
+++ /dev/null
@@ -1,37 +0,0 @@
-<% local view = ... %>
-
-<h1>SECURITY CONFIRMATION</h1>
-
-<h2>Are you sure you want to preform the previous action?</h2>
-<P>You should be aware that a wrong-configured firewall combined with wrong action could lead to lost communication.</P>
-<P>If you know what you are doing, you can safely confirm you action below.</P>
-<P>If you are not sure what you are doing, you should go back and check your configurations and maybe do a 'check config' to see status on your configurations.</P>
-
-<DL>
-<DT>Undo and go back</dt>
-<DD><form name="undo" action="<%= view.url %>" method="POST">
-<input type=submit class="submit" name="confirm" value="Back">
-</form></DD>
-</DL>
-
-<dl>
-<dt>Preform check of configs</dt>
-<dd><form name="check" action="<%= view.url .. "/check" %>" method="POST"><input type=submit name="check" value="check" class="submit"></form></dd>
-</dl>
-
-<% if (view.previousaction) then %>
- <DL>
- <dt>Confirm action</dt>
- <DD>
- <form name="confirm" action="" method="POST">
- <input type=submit class="submit" name="confirm" value="<%= view.previousaction %>">
- </form>
- </DD>
- </DL>
-<% elseif (view.startstop) and (view.startstop.cmdresult) then %>
- <DL>
- <DT>Result of previous action</DT>
- <DD><pre><%= view.startstop.cmdresult %></pre></DD>
- </DL>
-<% end %>
-