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
On EL8 and Fedora DNF can manage modules. This is a method of providing
multiple versions on the same OS. Only one DNF module can be active at
the same time.
Copy file name to clipboardExpand all lines: manifests/globals.pp
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,10 @@
86
86
# @param manage_xlogdir Set to false if you have file{ $xlogdir: } already defined
87
87
#
88
88
# @param manage_package_repo Sets up official PostgreSQL repositories on your host if set to true.
89
+
# @param manage_dnf_module
90
+
# Manage the DNF module. This only makes sense on distributions that use DNF
91
+
# package manager, such as EL8 or Fedora. It also requires Puppet 5.5.20+ or
92
+
# Puppet 6.15.0+ since they ship the dnfmodule provider.
89
93
# @param module_workdir Specifies working directory under which the psql command should be executed. May need to specify if '/tmp' is on volume mounted with noexec option.
90
94
#
91
95
#
@@ -153,6 +157,7 @@
153
157
$manage_selinux = undef,
154
158
155
159
$manage_package_repo = undef,
160
+
Boolean $manage_dnf_module = false,
156
161
$module_workdir = undef,
157
162
) {
158
163
# We are determining this here, because it is needed by the package repo
0 commit comments