Browse Source

sudo read file

sshtunnel
Christian Rotzoll 6 years ago
parent
commit
1e97f1e3a7
  1. 4
      home.admin/config.scripts/internet.sshtunnel.py

4
home.admin/config.scripts/internet.sshtunnel.py

@ -107,9 +107,7 @@ if sys.argv[1] == "on":
print("DONE")
else:
print("OK - root id_rsa.pub file exists")
ssh_pubkey=""
with open('/home/root/.ssh/id_rsa.pub', 'r') as file:
ssh_pubkey = file.read().replace('\n', '')
ssh_pubkey = subprocess.check_output("sudo cat /root/.ssh/id_rsa.pub", shell=True, universal_newlines=True)
# make sure autossh is installed
# https://www.everythingcli.org/ssh-tunnelling-for-fun-and-profit-autossh/

Loading…
Cancel
Save