Skip to content

Commit

Permalink
(profile::ccs::file_transfer) do not install idna_ssl on rhel9+
Browse files Browse the repository at this point in the history
It is only required on older OS. On rhel9+ it just creates noise via
pip mentioning that the requirements are already met.

Refs:
https://lsstc.slack.com/archives/C01270EHCQ3/p1722345845991169
voxpupuli/puppet-python#626
aio-libs/idna-ssl#8
  • Loading branch information
glennmorris committed Jul 31, 2024
1 parent e70375c commit 8d8af04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion site/profile/manifests/ccs/file_transfer.pp
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,14 @@
'multidict',
'typing_extensions',
'yarl',
'idna_ssl',
]
$yum_extra_packages = []
}
'8': {
$pip_extra_packages = [
'aiosignal',
'idna_ssl',
]
$yum_extra_packages = [
'python3-async-timeout',
Expand Down Expand Up @@ -120,7 +122,6 @@
]

$pip_packages = $pip_extra_packages + [
'idna_ssl',
'aiobotocore',
]

Expand Down

0 comments on commit 8d8af04

Please sign in to comment.