sudo read file

This commit is contained in:
Christian Rotzoll
2019-04-02 03:15:53 +01:00
parent 17bd13e580
commit 1e97f1e3a7

View File

@@ -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/