|
Revision 11025, 0.5 KB
(checked in by edent, 15 months ago)
|
|
run nodeBooter
|
| Line | |
|---|
| 1 | <p>This is the console view</p> |
|---|
| 2 | <p>user: {{user}}</p> |
|---|
| 3 | <p>password: {{password}}</p> |
|---|
| 4 | <p>ip: {{ip}}</p> |
|---|
| 5 | <p>port: {{port}}</p> |
|---|
| 6 | <p>Stdin: {{stdin}}</p> |
|---|
| 7 | <p>Stdout: {{stdout.readlines}}</p> |
|---|
| 8 | <p>Stderr: {{stderr}}</p> |
|---|
| 9 | <p>processes: {{processes}}</p> |
|---|
| 10 | <p>runningNodebooter: {{runningNodebooter}}</p> |
|---|
| 11 | {% if not runningNodebooter %} |
|---|
| 12 | <a href='/startNodeBooter/{{ip}}/{{port}}/{{user}}/{{password}}'>Start Nodebooter</a> |
|---|
| 13 | {% endif %} |
|---|
| 14 | {% if runningNodebooter %} |
|---|
| 15 | <a href='/stopNodeBooter/{{ip}}/{{port}}/{{user}}/{{password}}'>Stop Nodebooter</a> |
|---|
| 16 | {% endif %} |
|---|