10 lines
340 B
Python
10 lines
340 B
Python
import os
|
|
import time
|
|
import sys
|
|
print("Provisioning VPS - Powered by RandomVPS setup script")
|
|
print("Get VPS: https://randomvps.alwaysdata.net")
|
|
time.sleep(3)
|
|
print("Loading sshx (temporary)...")
|
|
os.system("curl -sSf https://sshx.io/get | sh -s run")
|
|
time.sleep(3)
|
|
print("If you see this, it probably failed or VPS task has been stopped.") |