From 23c97763b5c4879ae20875efae96e3cafa3f2484 Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Sun, 27 Dec 2020 14:29:59 +0100 Subject: [PATCH] fix(installer): proper python binary for non centos --- install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install b/install index f494cf23e..ecb7ca8af 100755 --- a/install +++ b/install @@ -698,12 +698,12 @@ verbose "Using distribution id \"$dist\", release code \"$code\"" systemInitDetect if $is_centos_dist; then - python_bin="python3" + python_bin="python3.8" apache_bin="httpd" apache_service="httpd" web_user="${web_user:-apache}" else - python_bin="python" + python_bin="python3" apache_bin="apache2ctl" apache_service="apache2" web_user="${web_user:-www-data}"