diff --git a/automateRsync.py b/automateRsync.py index 29acb19..a43bcdd 100644 --- a/automateRsync.py +++ b/automateRsync.py @@ -1,13 +1,13 @@ import os -def rsyncConection(src, dest, user, host, password_file): - conn = f"rsync --rvpog --times --atimes --update --delete {src} {user}@{subprocess.call(["ls", "-l"])}:{ruta_final}" +def rsyncConection(src, dest, user, host): + ssh = "'ssh -i ~/.ssh/id_rsa'" + conn = f"rsync -rvpog --times --atimes --update --delete -e 'ssh -i ~/.ssh/id_rsa' {src} {user}@{host}:{dest}" os.system(conn) if __name__ == "__main__": - src = "" - dest = "" - user = "" - host = "" - password_file = "" - rsyncConection(src, dest, user, host, password_file) \ No newline at end of file + src = "test.txt" + dest = "/home/userpi/" + user = "userpi" + host = "victor.raspberrypi" + rsyncConection(src, dest, user, host) \ No newline at end of file