We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a13ab8d commit c2c2b6bCopy full SHA for c2c2b6b
lib/apache
@@ -100,7 +100,7 @@ function install_apache_uwsgi {
100
uwsgi-plugin-python \
101
uwsgi-plugin-python3 \
102
libapache2-mod-proxy-uwsgi
103
- elif [[ $os_VENDOR == "Fedora" ]]; then
+ elif is_fedora; then
104
# Note httpd comes with mod_proxy_uwsgi and it is loaded by
105
# default; the mod_proxy_uwsgi package actually conflicts now.
106
# See:
@@ -114,9 +114,7 @@ function install_apache_uwsgi {
114
uwsgi-python3 \
115
apache2-mod_uwsgi
116
else
117
- # Centos actually has the module in epel, but there was a big
118
- # push to disable epel by default. As such, compile from source
119
- # there.
+ # Compile uwsgi from source.
120
local dir
121
dir=$(mktemp -d)
122
pushd $dir
0 commit comments