Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Puppet 8 support #179

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ cvmfs::domain{'example.net'
}
```

##### Use fuse3 version of cvmfs

```puppet
class{'cvmfs':
fuse3 => true,
}
```

##### Use Mount rather than AutoFS

```puppet
Expand Down
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# cvmfs_server_url => 'http://web.example.org/cvmfs/@fqrn@'
# }
#
# @wxample Use fuse3 version of cvmfs
# @example Use fuse3 version of cvmfs
# class{'cvmfs':
# fuse3 => true,
# }
Expand Down Expand Up @@ -120,6 +120,7 @@
Stdlib::Httpurl $repo_base,
Stdlib::Httpurl $repo_gpgkey,
Variant[Undef,String] $cvmfs_http_proxy,
Optional[Variant[Enum['absent'], Array[String[1]]]] $repo_includepkgs,
Enum['autofs','mount','none'] $mount_method = 'autofs',
Boolean $manage_autofs_service = true,
Integer $default_cvmfs_partsize = 10000,
Expand Down Expand Up @@ -151,7 +152,6 @@
Boolean $repo_testing_enabled = false,
Optional[Stdlib::Httpurl] $repo_proxy = undef,
Boolean $repo_gpgcheck = true,
Optional[Variant[Enum['absent'], Array[String[1]]]] $repo_includepkgs,
Optional[Enum['yes','no']] $cvmfs_use_geoapi = undef,
Optional[Enum['yes','no']] $cvmfs_follow_redirects = undef,
Boolean $cvmfs_instrument_fuse = false,
Expand Down
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"name": "puppetlabs/apt"
},
{
"version_requirement": ">= 1.0.0 < 9.0.0",
"version_requirement": ">= 1.0.0 < 10.0.0",
"name": "puppetlabs/concat"
},
{
Expand Down Expand Up @@ -80,7 +80,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 7.0.0 < 8.0.0"
"version_requirement": ">= 7.0.0 < 9.0.0"
}
]
}
Loading