summaryrefslogtreecommitdiffstats
path: root/run
AgeCommit message (Collapse)Author
2021-09-22Fix shellcheck warningsa1346054
2020-05-29Updated supported Python versionsBrian May
* Drop 2.7 * Add 3.7 and 3.8
2019-12-13Auto sudoers file (#269)William Mantly
* added sudoers options to command line arguments * added sudoers options to command line arguments * template for sudoers file * Added option for GUI sudo * added support for GUI sudo * script for auto adding sudo file * sudoers auto add works and validates * small change * Clean up for CI * removed code that belongs in another PR * added path for package bins * added sudoers bin * added sudoers-add to setup file * fixed issue with sudoers bash script * auto sudoers now works * added --sudoers-no-modify option * bin now works with ./run * removed debug print * Updated sudoers-add script * Fixed error passing sudoers config to script * more dynamic building of sudoers file * added option to specify sudoers.d file name * fixed indent issue * fixed indent issue * indent issue * clean up * formating * docs * fix for flags * Update usage.rst * removed shell=true * cleared CI errors * cleared CI errors * removed random * cleared linter issue * cleared linter issue * cleared linter issue * updated sudoers-add script * safer temp file * moved bin directory * moved bin directory * removed print * fixed spacing issue * sudoers commands must only containe upper case latters
2017-10-23turn off debuggingvieira
2017-10-23nested if should be andvieira
2017-10-23Use versions of python3 greater than 3.5 when available (e.g. 3.6)vieira
Some Linux distros, like Alpine, Arch, etc and some BSDs, like FreeBSD, are now shipping with python3.6 as the default python3. Both the client and the server are failing to run in this distros, because we are specifically looking for python3.5. These changes make the run shell script use python3 if the version is greater than 3.5, otherwise falling back as usual. On the server any version of python3 will do, use it before falling back to python, as the server code can run with any version of python3.
2016-08-30Support using run from different directoryBrian May
2016-08-30Ensure we update sshuttle/version.py in runBrian May
2016-08-30Don't print python version in runBrian May
2016-08-30Add CWD to PYTHONPATH in runBrian May
2016-04-20Don't mix tab and spaces in shell scriptvieira
Sometime ago I was in python mode and incorrectly indented a line of the shell script with spaces instead of tabs. Shame on me. This should bring things back to their natural order.
2016-03-16If 3.5 not available, try to fallback to 2.7vieira
In situations where 2.7 is available and some unsupported 3.x is the system's default we should probably fallback to 2.7 instead of the default (that might be e.g. 3.4). This might fix #78.
2016-01-30Make sure we use Python 3.5Brian May
2015-12-05Try Python3.5 by default.Brian May
Python 3.0, 3.1, 3.2, and 3.4 not supported however.
2015-11-28Prefer Python3 by default.Brian May
2015-11-15Restructure codeBrian May
* Make compatible with setuptools. * Load modules via ssh into separate modules, not the one name space.