File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 215215 if String($python::version ) =~ /^python3/ {
216216 $pip_package = " ${python} -pip"
217217 $pip_provider = $python .regsubst(/^.*python3\.?/,' pip3.' ).regsubst(/\.$/,' ' )
218+ } elsif ($facts [' os' ][' family' ] == ' RedHat' ) and (versioncmp($facts [' os' ][' release' ][' major' ], ' 9' ) >= 0) {
219+ $pip_package = ' python3-pip'
220+ $pip_provider = pip3
218221 } elsif ($facts [' os' ][' family' ] == ' RedHat' ) and (versioncmp($facts [' os' ][' release' ][' major' ], ' 8' ) >= 0) {
219222 $pip_package = ' python3-pip'
220223 $pip_provider = pip3
Original file line number Diff line number Diff line change 2828
2929 $gunicorn_package_name = $facts [' os' ][' family' ] ? {
3030 ' RedHat' => $facts [' os' ][' release' ][' major' ] ? {
31+ ' 9' => ' python3-gunicorn' ,
3132 ' 8' => ' python3-gunicorn' ,
3233 default => ' python-gunicorn' ,
3334 },
Original file line number Diff line number Diff line change 2424 "operatingsystem" : " CentOS" ,
2525 "operatingsystemrelease" : [
2626 " 7" ,
27- " 8"
27+ " 8" ,
28+ " 9"
2829 ]
2930 },
3031 {
You can’t perform that action at this time.
0 commit comments