Mercurial > libervia-backend
changeset 3263:e81ad34e8af8
bin (sat): check `twistd` before `twistd3` to use venv version first
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 20 Apr 2020 14:52:57 +0200 |
parents | aa71f1d40300 |
children | 9896589487ae |
files | bin/sat |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/sat Mon Apr 20 14:51:58 2020 +0200 +++ b/bin/sat Mon Apr 20 14:52:57 2020 +0200 @@ -4,10 +4,10 @@ DAEMON="" PYTHON="python3" -# for Python 3, "twistd" is named "twistd3" on some distros, so we check for it first -TWISTD="$(which twistd3 2>/dev/null)" +TWISTD="$(which twistd 2>/dev/null)" if [ $? -ne 0 ]; then - TWISTD="$(which twistd 2>/dev/null)" + # for Python 3, "twistd" is named "twistd3" on some distros + TWISTD="$(which twistd3 2>/dev/null)" fi if [ $? -ne 0 ]; then printf "Can't find \"twistd\" script, are you sure that Twisted is installed?\n"