diff --git a/src/wgd.sh b/src/wgd.sh index e35ebc2..c60cb53 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -123,18 +123,18 @@ _installPythonVenv(){ ubuntu|debian) { sudo apt-get update; sudo apt-get install ${pythonExecutable}-venv; } &>> ./log/install.txt ;; - centos|fedora|redhat|rhel) - if command -v dnf &> /dev/null; then - { sudo dnf install -y ${pythonExecutable}-virtualenv; printf "\n\n"; } >> ./log/install.txt - else - { sudo yum install -y ${pythonExecutable}-virtualenv; printf "\n\n"; } >> ./log/install.txt - fi - ;; - *) - printf "[WGDashboard] %s Sorry, your OS is not supported. Currently the install script only support Debian-based, Red Hat-based OS.\n" "$heavy_crossmark" - printf "%s\n" "$helpMsg" - kill $TOP_PID - ;; +# centos|fedora|redhat|rhel) +# if command -v dnf &> /dev/null; then +# { sudo dnf install -y ${pythonExecutable}-virtualenv; printf "\n\n"; } >> ./log/install.txt +# else +# { sudo yum install -y ${pythonExecutable}-virtualenv; printf "\n\n"; } >> ./log/install.txt +# fi +# ;; +# *) +# printf "[WGDashboard] %s Sorry, your OS is not supported. Currently the install script only support Debian-based, Red Hat-based OS.\n" "$heavy_crossmark" +# printf "%s\n" "$helpMsg" +# kill $TOP_PID +# ;; esac fi