small fix
parent
d6c5157301
commit
230d41c844
|
@ -41,6 +41,7 @@ custom_stylesheet = "css/main.css"
|
||||||
enable_shell = True
|
enable_shell = True
|
||||||
|
|
||||||
shell_port = 22
|
shell_port = 22
|
||||||
|
shell_host = "shell.icec.tf"
|
||||||
|
|
||||||
shell_user_prefixes = ["ctf-"]
|
shell_user_prefixes = ["ctf-"]
|
||||||
shell_password_length = 6
|
shell_password_length = 6
|
||||||
|
|
|
@ -11,7 +11,7 @@ def run():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
shell = spur.SshShell(
|
shell = spur.SshShell(
|
||||||
hostname=config.secret.shell_host,
|
hostname=config.shell_host,
|
||||||
username=config.secret.shell_username,
|
username=config.secret.shell_username,
|
||||||
private_key_file=config.secret.shell_privkey,
|
private_key_file=config.secret.shell_privkey,
|
||||||
port=config.shell_port,
|
port=config.shell_port,
|
||||||
|
|
Loading…
Reference in New Issue