You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(#236) Enable python module stream on EL8. Bump minimum puppet version
The certbot package on EL8 currently requires `/usr/bin/python3.6`, which is part of the `python36` module stream, and needs enabled in order to install.
Bump the minimum puppet version to 6.15.0 since the enable_only feature of the dnfmodule provider was added in https://tickets.puppetlabs.com/browse/PUP-10235
Copy file name to clipboardExpand all lines: manifests/init.pp
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
# @param environment An optional array of environment variables
17
17
# @param package_name Name of package and command to use when installing the client package.
18
18
# @param package_ensure The value passed to `ensure` when installing the client package.
19
+
# @param dnfmodule_version The yum module stream version to enable on EL8 and greater variants using the `package` method with the `dnfmodule` provider.
19
20
# @param package_command Path or name for letsencrypt executable.
20
21
# @param config_file The path to the configuration file for the letsencrypt cli.
21
22
# @param config A hash representation of the letsencrypt configuration file.
Copy file name to clipboardExpand all lines: manifests/install.pp
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,23 @@
3
3
# @param configure_epel A feature flag to include the 'epel' class and depend on it for package installation.
4
4
# @param package_ensure The value passed to `ensure` when installing the client package.
5
5
# @param package_name Name of package to use when installing the client package.
6
+
# @param dnfmodule_version The yum module stream version to enable on EL8 and greater variants using the `package` method with the `dnfmodule` provider.
0 commit comments