commit message from python script

This commit is contained in:
2024-02-14 14:33:55 +01:00
parent a47474a9f5
commit ce15671c64

View File

@@ -2,8 +2,6 @@
import os, time import os, time
def check_ping(hostname = str): def check_ping(hostname = str):
response = os.system("timeout 0.2 ping -c 1 " + hostname + '&> /dev/null') response = os.system("timeout 0.2 ping -c 1 " + hostname + '&> /dev/null')
# and then check the response... # and then check the response...
@@ -44,7 +42,7 @@ if __name__ == "__main__":
for check_count in range(1,10): for check_count in range(1,10):
if check_ping(hostname=nextcloud_server) is True: if check_ping(hostname=nextcloud_server) is True:
print(nextcloud_server, "ist erreichbar...") print(nextcloud_server, "ist erreichbar...")
if rclone_folders_copy(folder_to_sync=folder_to_sync_manuell, dest_folder="/home/jonnybravo/.nextcloud") is True: if rclone_folders_copy(folder_to_sync=folder_to_sync_manuell, dest_folder=os.environ["HOME"] + os.sep + ".nextcloud") is True:
print("Sync erfolgreich") print("Sync erfolgreich")
else: else:
print("Sync nicht erfolgreich !!") print("Sync nicht erfolgreich !!")