From 15f1a5badab65313457474dbfcc01f3efcefa207 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 9 Dec 2019 20:56:17 -0700 Subject: [PATCH] Removed old mount-backup-shares wrapper --- .../mount-backup-shares | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100755 scripts/outer_scripts_to_review/mount-backup-shares diff --git a/scripts/outer_scripts_to_review/mount-backup-shares b/scripts/outer_scripts_to_review/mount-backup-shares deleted file mode 100755 index 0d8b7fd3..00000000 --- a/scripts/outer_scripts_to_review/mount-backup-shares +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/python3 -# -## Wizard Kit: Backup share mount tool - -import os -import sys - -# Init -sys.path.append(os.path.dirname(os.path.realpath(__file__))) -from functions.data import * -from functions.network import * -init_global_vars() - -if __name__ == '__main__': - try: - # Prep - clear_screen() - - # Mount - if is_connected(): - mount_backup_shares(read_write=True) - else: - # Couldn't connect - print_error('ERROR: No network connectivity.') - - # Done - print_standard('\nDone.') - #pause("Press Enter to exit...") - exit_script() - except SystemExit as sys_exit: - exit_script(sys_exit.code) - except: - major_exception() - -# vim: sts=2 sw=2 ts=2