The same thing we do every night, Pinky - try to take over the world!

This commit is contained in:
2023-03-23 19:21:30 +02:00
parent 6dbdced873
commit a5670b3d17
5 changed files with 3 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

View File

@@ -1150,7 +1150,9 @@ def create_node(provider, name=None, location=None, size=None, image=None, confi
print(node.name + " created successfully")
print("Node is initializing")
print("ip to connect to")
print("\nIP: %s\n" % (node.public_ips))
print("\nIP: %s" % (node.public_ips[0]))
print("\nssh command: ssh -i path/to/secdep secdep@%s\n" % (node.public_ips[0]))
print("If you ever change the port adjust the command accordingly")
return node
def list_all_nodes(provider, filterIn=None):