2 This file contains utilities for other commands to use. 4 Copyright 2015 Fetch Robotics Inc. 8 from argcomplete.completers
import ChoicesCompleter
12 def ssh(user, host, command, password=None, fname=None):
13 "Run the command on the remote host as the given user." 15 userhost = user +
"@" + host
16 ssh_command = [
"ssh",
"-t", userhost, command]
20 ssh_command = [
"sshpass",
"-e"] + ssh_command
21 e_vars = {
"SSHPASS": password}
23 pipe = open(fname +
".txt",
'w')
if fname
else None 25 proc = subprocess.Popen(ssh_command, env=e_vars, stdout=pipe, stderr=pipe)
29 return proc.returncode
33 proc = subprocess.Popen([
"bash",
"-c", command])
35 return proc.returncode
41 if "fetch".startswith(prefix)
and prefix !=
"fetch":
42 options.extend(
"fetch" + str(i)
for i
in range(10))
43 if "freight".startswith(prefix)
and prefix !=
"freight":
44 options.extend(
"freight" + str(i)
for i
in range(10))
47 return (prefix + str(i)
for i
in range(10))
49 users = subprocess.check_output([
"awk",
"-F:",
"{ print $1}",
"/etc/passwd"]) \
54 arg = parser.add_argument(
"--user", action=
"store",
55 help=
"User account to use on robot")
56 arg.completer = ChoicesCompleter(users)
60 arg = parser.add_argument(
"--robot", action=
"store", help=
"Robot to use")
61 arg.completer = RobotCompleter
65 parser.add_argument(
"--workspace", action=
"store",
66 help=
"Catkin workspace to use")
67 parser.add_argument(
"--remote-workspace", action=
"store",
68 help=
"Catkin workspace to use on the robot")