converge/pkg/server/templates/downloads.templ
2024-09-08 11:16:49 +02:00

46 lines
1.6 KiB
Plaintext

package templates
templ Downloads() {
<div>
<h1 id="downloads">Downloads</h1>
<table class="table">
<thead>
<tr>
<th>Component</th>
<th>Purpose</th>
<th>Linux</th>
<th>Windows</th>
</tr>
</thead>
<tr>
<td>agent</td>
<td>The agent to run inside aa CI job</td>
<td><a href="../static/agent">agent</a></td>
<td><a href="../static/agent.exe">agent.exe</a></td>
</tr>
<tr>
<td>wsproxy</td>
<td>SSH proxy command that can be directly used by ssh</td>
<td><a href="../static/wsproxy">wsproxy</a></td>
<td><a href="../static/wsproxy.exe">wsproxy.exe</a></td>
</tr>
<tr>
<td>tcptows</td>
<td>TCP to WS tunnel for allowing regular
SSH and SFTP clients to connect to converge</td>
<td><a href="../static/tcptows">tcptows</a></td>
<td><a href="../static/tcptows.exe">tcptows.exe</a></td>
</tr>
</table>
</div>
}
templ DownloadsTab() {
@BasePage(3) {
@Downloads()
}
}