def python_process_check(): processes = [] for pi in pi_data_table: print("Checking python processes in {}".format(pi)) reachable = ping_pi(pi[1]) if not reachable: statement = "NA" else: py_processes = current_py_processes(pi[1]) if not py_processes: statement = "NA" else: if "Puzzle" in pi[0] and len(py_processes.split("\n")) >= 3: statement = "Puzzle rfid and video running" elif "Observ" in pi[0] and len(py_processes.split("\n")) >= 2: statement = "Observation network photos running" elif "Feeder" in pi[0] and len(py_processes.split("\n")) >= 2: statement = "Feeder network photos running" elif "Social" in pi[0] and len(py_processes.split("\n")) >= 2: statement = "Social network photos running" else: statement = "processes running in {}:{}. Problem with one or more processes.".format( pi[0], py_processes) processes += [statement] return processes
def memory_check(): memory = [] for pi in pi_data_table: print("Checking memory in {}".format(pi)) reachable = ping_pi(pi[1]) if not reachable: print("{} not responding to pings".format(pi[0])) info = "NA" else: info = mem_check(pi[1]) memory += [info] return memory
def server_check(): server = [] for pi in pi_data_table: print("Checking server mount in {}".format(pi)) reachable = ping_pi(pi[1]) if not reachable: print("{} not responding to pings".format(pi[0])) info = "NA" else: info = terminal( "ssh pi@{} '[ -d \"/home/pi/mnt/Videos_GRETI\" ] && echo \"Server is mounted\" || echo \"Server is NOT mounted\"'" .format(pi[1])) server += [info] return server
#!/usr/bin/python3 from all_ipsandnames import pi_data_table from term_utils import ping_pi, terminal, kill_python, git_pull, reboot, delete_git, install_git, chmod_launchers, clear_apaporis #pi_data_table format is [(pi name1, pi IP1), (pi name2, pi IP2),... etc] #print(pi_data_table) for pi in pi_data_table: print("Updating scripts from Github in {}".format(pi)) reachable = ping_pi(pi[1]) if not reachable: pass else: kill_python(pi[1]) clear_apaporis(pi[1]) delete_git(pi[1]) install_git(pi[1]) chmod_launchers(pi[1], pi[0]) reboot(pi[1])