-
Notifications
You must be signed in to change notification settings - Fork 172
Abilitiy to add arbitrary options #22
Comments
That's a great idea. I will implement this with #19 probably next weekend. I just need free time to do it. |
cli library that storm uses is manage.py which does not support multiple values for a single argument. I think about implementing this with a slight change on the usage example you suggested.
|
The reason I suggested that particular syntax is because it mirrors the syntax for passing the values to scp/ssh themselves. At the same time I understand the limitations in implementing it and in that context your suggestion path makes a lot of sense. Granted I'd be very careful about what you use as a separator. For example SendEnv allows multiple environment variables to specified by separating the variables with white space. |
I decided to remove manage.py and use good, old argparse module for the new versions. It limits so much that brings more difficulty than I expected. |
It's up.
You can try it after a "pip install stormssh --upgrade" |
SSH has a large collection of options that can be added to a host. See
man ssh_config
for a list.It would be nice if when editing we could add and edit arbitrary options. As an example:
This would would also allow
--id_file
to be deprecated and instead use a standard format for adding options.The text was updated successfully, but these errors were encountered: