Skip to content

Commit

Permalink
Remove deprecated mfssize parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex committed Feb 7, 2024
1 parent cf3b9a3 commit 59f2eb4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
9 changes: 0 additions & 9 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ The following parameters are available in the `poudriere` class:
* [`poudriere_base`](#-poudriere--poudriere_base)
* [`poudriere_data`](#-poudriere--poudriere_data)
* [`use_portlint`](#-poudriere--use_portlint)
* [`mfssize`](#-poudriere--mfssize)
* [`tmpfs`](#-poudriere--tmpfs)
* [`tmpfs_limit`](#-poudriere--tmpfs_limit)
* [`tmpfs_blacklist`](#-poudriere--tmpfs_blacklist)
Expand Down Expand Up @@ -170,14 +169,6 @@ Use portlint to check ports sanity

Default value: `'no'`

##### <a name="-poudriere--mfssize"></a>`mfssize`

Data type: `Optional[String[1]]`

Size of WRKDIRPREFIX when using mdmfs

Default value: `undef`

##### <a name="-poudriere--tmpfs"></a>`tmpfs`

Data type: `Poudriere::Tmpfs`
Expand Down
4 changes: 0 additions & 4 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
# @param poudriere_base The directory where poudriere will store jails and ports
# @param poudriere_data The directory where the jail will store the packages and logs
# @param use_portlint Use portlint to check ports sanity
# @param mfssize Size of WRKDIRPREFIX when using mdmfs
# @param tmpfs Use tmpfs(5)
# @param tmpfs_limit How much memory to limit tmpfs size to for each builder in GiB
# @param tmpfs_blacklist List of package globs that are not allowed to use tmpfs
Expand Down Expand Up @@ -90,7 +89,6 @@
Stdlib::Absolutepath $poudriere_base = '/usr/local/poudriere',
String[1] $poudriere_data = '${BASEFS}/data',
Enum['yes', 'no'] $use_portlint = 'no',
Optional[String[1]] $mfssize = undef,
Poudriere::Tmpfs $tmpfs = 'yes',
Optional[Integer[1]] $tmpfs_limit = undef,
Optional[Array[String[1]]] $tmpfs_blacklist = undef,
Expand Down Expand Up @@ -162,8 +160,6 @@
Hash $portstrees = {},
String[1] $xbuild_package = 'qemu-user-static',
) {
if $mfssize { deprecation('mfssize', 'This parameter is deprecated and has no effect.') }

Exec {
path => '/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin',
}
Expand Down

0 comments on commit 59f2eb4

Please sign in to comment.