Skip to content

Commit 5210ec7

Browse files
committed
Use CVMFS consistently over CvmFS
1 parent 157840c commit 5210ec7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

REFERENCE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
#### Public Classes
1010

11-
* [`cvmfs`](#cvmfs): Installs and Configures CvmFS
11+
* [`cvmfs`](#cvmfs): Installs and Configures CVMFS
1212

1313
#### Private Classes
1414

1515
* `cvmfs::apt`: Configure cvmfs apt repositories
16-
* `cvmfs::config`: Central configuration of CvmFS
16+
* `cvmfs::config`: Central configuration of CVMFS
1717
* `cvmfs::fsck`: enable check_fsck as a cron or systemd timer
1818
* `cvmfs::install`: Install cvmfs from a yum repository.
1919
* `cvmfs::service`: Manages the cvmfs services. Opionally this also manages the autofs services
@@ -89,7 +89,7 @@ class{'cvmfs':
8989
}
9090
```
9191

92-
##### New parameters with CvmFS 2.11.0
92+
##### New parameters with CVMFS 2.11.0
9393

9494
```puppet
9595
class{'cvmfs':
@@ -192,7 +192,7 @@ Default value: `'autofs'`
192192

193193
Data type: `Optional[Stdlib::Fqdn]`
194194

195-
When using the `mount_method` as `mount` it may be nescessary to specify a CvmFS located configuration_repository.
195+
When using the `mount_method` as `mount` it may be nescessary to specify a CVMFS located configuration_repository.
196196
This is a repository containing extra cvmfs configuration required to be mounted before any other
197197
repositories. There is at most one config_repo client. In addition the config_repo must actually be mounted
198198
explicitly with a `cvmfs::mount{$config_repo:}`, this is **not** automatic.
@@ -578,7 +578,7 @@ Default value: `false`
578578
Data type: `Optional[Boolean]`
579579

580580
Install or disable fuse3 variant of cvmfs, if left `undef` no change will be made. Note that changing
581-
this value when CvmFS mounts are active may well destroy those mounts.
581+
this value when CVMFS mounts are active may well destroy those mounts.
582582
Not availabe on Ubuntu 18.04.
583583

584584
Default value: `undef`
@@ -778,7 +778,7 @@ The following parameters are available in the `cvmfs::domain` defined type:
778778

779779
Data type: `Stdlib::Fqdn`
780780

781-
The domain of CvmFS repositories to mount
781+
The domain of CVMFS repositories to mount
782782

783783
Default value: `$name`
784784

manifests/config.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @summary Central configuration of CvmFS
1+
# @summary Central configuration of CVMFS
22
# @api private
33
#
44
class cvmfs::config (

manifests/domain.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# cvmfs_server_url = 'http://example.org/cvmfs/@fqrn@',
55
# }
66
#
7-
# @param domain The domain of CvmFS repositories to mount
7+
# @param domain The domain of CVMFS repositories to mount
88
# @param cvmfs_quota_limit Per mount quota limit, not relavent to shared cache. Sets cvmfs_quota_limit
99
# @param cvmfs_server_url Stratum 1 list, typically `;` delimited. Sets CVMFS_SERVER_URL parameter.
1010
# @param cvmfs_http_proxy List of http proxies to use. Sets CVMFS_PROXY_LIST parameter.

manifests/init.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @summary Installs and Configures CvmFS
1+
# @summary Installs and Configures CVMFS
22
#
33
# @see https://cvmfs.readthedocs.io/en/stable/apx-parameters.html CVMFS configuration parameters
44
#
@@ -38,7 +38,7 @@
3838
# }
3939
# }
4040
#
41-
# @example New parameters with CvmFS 2.11.0
41+
# @example New parameters with CVMFS 2.11.0
4242
# class{'cvmfs':
4343
# cvmfs_cache_symlinks => 'yes',
4444
# cvmfs_streaming_cache => 'no',
@@ -55,7 +55,7 @@
5555
# use puppet's mount type, currently adding a line to /etc/fstab. The *none* option
5656
# skips all mounting. Note that migrating between for instance *autofs* and then *mount* is not supported.
5757
# @param config_repo
58-
# When using the `mount_method` as `mount` it may be nescessary to specify a CvmFS located configuration_repository.
58+
# When using the `mount_method` as `mount` it may be nescessary to specify a CVMFS located configuration_repository.
5959
# This is a repository containing extra cvmfs configuration required to be mounted before any other
6060
# repositories. There is at most one config_repo client. In addition the config_repo must actually be mounted
6161
# explicitly with a `cvmfs::mount{$config_repo:}`, this is **not** automatic.
@@ -118,7 +118,7 @@
118118
# @param cvmfs_fsck_onreboot Should fsck be run after every reboot
119119
# @param fuse3
120120
# Install or disable fuse3 variant of cvmfs, if left `undef` no change will be made. Note that changing
121-
# this value when CvmFS mounts are active may well destroy those mounts.
121+
# this value when CVMFS mounts are active may well destroy those mounts.
122122
# Not availabe on Ubuntu 18.04.
123123
# @param cvmfs_cache_symlinks If set to yes, enables symlink caching in the kernel.
124124
# @param cvmfs_streaming_cache If set to yes, use a download manager to download regular files on read.

0 commit comments

Comments
 (0)