|
82 | 82 | # @param cvmfs_debuglog Create a debug log file at this location. |
83 | 83 | # @param cvmfs_max_ttl Max ttl. |
84 | 84 | # @param cvmfs_version Version of cvmfs to install. |
85 | | -# @param repo_base URL containting stable, testing and config apt or yum repositories. Default in hiera data. |
| 85 | +# @param repo_base URL containing stable, testing and config apt or yum repositories. Default in hiera data. |
| 86 | +# @param repo_base_alt URL containing stable, Same as repo_base, hosted on a different backend. Default in hiera data. |
86 | 87 | # @param repo_includepkgs Specify an includepkgs to the yum repos to ignore other packages. |
87 | 88 | # @param repo_priority Yum priority of repositories |
88 | 89 | # @param repo_proxy http proxy for cvmfs yum package repository |
89 | 90 | # @param repo_config_enabled Should the config yum repository be enabled |
90 | 91 | # @param repo_testing_enabled Should the testing repository be enabled. |
| 92 | +# @param repo_future_enabled Should the future (pre-release) repository be enabled. |
91 | 93 | # @param repo_gpgcheck set to false to disable GPG checking |
92 | 94 | # @param repo_gpgkey Set a custom GPG key for yum repos. Default in hiera data. |
93 | 95 | # @param repo_manage Set to false to disable yum or apt repositories management. |
|
135 | 137 | # |
136 | 138 | class cvmfs ( |
137 | 139 | Stdlib::Httpurl $repo_base, |
| 140 | + Stdlib::Httpurl $repo_base_alt, |
138 | 141 | Stdlib::Httpurl $repo_gpgkey, |
139 | 142 | Variant[Undef,String] $cvmfs_http_proxy, |
140 | 143 | Optional[Variant[Enum['absent'], Array[String[1]]]] $repo_includepkgs, |
|
168 | 171 | Integer $repo_priority = 80, |
169 | 172 | Boolean $repo_config_enabled = false, |
170 | 173 | Boolean $repo_testing_enabled = false, |
| 174 | + Boolean $repo_future_enabled = false, |
171 | 175 | Optional[Stdlib::Httpurl] $repo_proxy = undef, |
172 | 176 | Boolean $repo_gpgcheck = true, |
173 | 177 | Optional[Enum['yes','no']] $cvmfs_use_geoapi = undef, |
|
0 commit comments