|
@ -6,11 +6,20 @@ Jeffery Russell |
|
|
import subprocess |
|
|
import subprocess |
|
|
import collections |
|
|
import collections |
|
|
|
|
|
|
|
|
import quote |
|
|
|
|
|
|
|
|
import module |
|
|
|
|
|
|
|
|
INPUT_FILE = "/home/jeff/scripts/servers.txt" |
|
|
INPUT_FILE = "/home/jeff/scripts/servers.txt" |
|
|
Computer = collections.namedtuple("Computer", ('host', 'menue_id')) |
|
|
Computer = collections.namedtuple("Computer", ('host', 'menue_id')) |
|
|
WELCOME_MESSAGE = "***************Jeff-Laptop***************" |
|
|
|
|
|
|
|
|
WELCOME_MESSAGE = "*************Jeff-Laptop***************" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def print_welcome_message(): |
|
|
|
|
|
""" |
|
|
|
|
|
Prints defined greeting message to terminal |
|
|
|
|
|
:return: None |
|
|
|
|
|
""" |
|
|
|
|
|
print(WELCOME_MESSAGE) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def print_menu_option(s): |
|
|
def print_menu_option(s): |
|
|
""" |
|
|
""" |
|
@ -18,23 +27,26 @@ def print_menu_option(s): |
|
|
:param s: |
|
|
:param s: |
|
|
:return: |
|
|
:return: |
|
|
""" |
|
|
""" |
|
|
space = " " * len(quote) - 4 - len(s) |
|
|
|
|
|
|
|
|
space = " " * (len(WELCOME_MESSAGE) - 3 - len(s)) |
|
|
print("* " + s + space + "*") |
|
|
print("* " + s + space + "*") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main(): |
|
|
def main(): |
|
|
""" |
|
|
""" |
|
|
This function inputs all the available hosts from a text file and prompts the user to connect to them |
|
|
This function inputs all the available hosts from a text file and prompts the user to connect to them |
|
|
:return: |
|
|
:return: |
|
|
""" |
|
|
""" |
|
|
|
|
|
print_welcome_message() |
|
|
|
|
|
file = module.input_file(INPUT_FILE) |
|
|
|
|
|
|
|
|
cmp = [] |
|
|
cmp = [] |
|
|
count = 1 |
|
|
count = 1 |
|
|
with open(INPUT_FILE) as file: |
|
|
|
|
|
for line in file: |
|
|
|
|
|
cmp.append(Computer(line, count)) |
|
|
|
|
|
count += 1 |
|
|
|
|
|
|
|
|
|
|
|
print("* SSH manager V 0.1 *") |
|
|
|
|
|
|
|
|
for line in file: |
|
|
|
|
|
cmp.append(Computer(line, count)) |
|
|
|
|
|
count += 1 |
|
|
|
|
|
|
|
|
|
|
|
print("* SSH manager V 0.1 *") |
|
|
for c in cmp: |
|
|
for c in cmp: |
|
|
print_menu_option(str(c.menue_id) + ") " + c.host) |
|
|
print_menu_option(str(c.menue_id) + ") " + c.host) |
|
|
|
|
|
|
|
@ -43,7 +55,7 @@ def main(): |
|
|
|
|
|
|
|
|
for c in cmp: |
|
|
for c in cmp: |
|
|
if i != '' and int(i) == c.menue_id: |
|
|
if i != '' and int(i) == c.menue_id: |
|
|
subprocess.call(["ssh", c.host.strip(' \t\n\r')]) |
|
|
|
|
|
|
|
|
subprocess.call(["ssh", c.host]) |
|
|
|
|
|
|
|
|
""" |
|
|
""" |
|
|
Makes sure that other programs don't execute the main |
|
|
Makes sure that other programs don't execute the main |
|
|