Skip to content

Commit 3c0429e

Browse files
authored
Merge pull request #186 from HereThereBeDragons/fix-cvmfs-param
Fix cvmfs param
2 parents f424424 + 621797a commit 3c0429e

File tree

3 files changed

+40
-7
lines changed

3 files changed

+40
-7
lines changed

_static/css/custom.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* modified from https://github.com/readthedocs/sphinx_rtd_theme/issues/295#issuecomment-560895037 */
2+
3+
.wy-nav-content {
4+
max-width: 1200px !important;
5+
}
6+
7+
/* and fix wrap bug per https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html */
8+
.wy-table-responsive table td {
9+
/* !important prevents the common CSS stylesheets from overriding
10+
this as on RTD they are loaded after this stylesheet */
11+
white-space: normal !important;
12+
}
13+
14+
.wy-table-responsive {
15+
overflow: visible !important;
16+
}

apx-parameters.rst

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ CVMFS_INSTRUMENT_FUSE | When set to *true* gather performance statisti
6262
| The results are displayed with `cvmfs_talk internal affairs`.
6363
CVMFS_NFS_INTERLEAVED_INODES In NFS mode, use only inodes of the form :math:`an+b`, specified as "b%a".
6464
CVMFS_IPFAMILY_PREFER Which IP protocol to prefer when connecting to proxies. Can be either 4 or 6.
65-
CVMFS_KCACHE_TIMEOUT Timeout for path names and file attributes in the kernel file system buffers.
65+
CVMFS_KCACHE_TIMEOUT Timeout in seconds for path names and file attributes in the kernel file system buffers.
6666
CVMFS_KEYS_DIR | Directory containing \*.pub files used as repository signing keys.
6767
| If set, this parameter has precedence over ``CVMFS_PUBLIC_KEY``.
68-
CVMFS_LOW_SPEED_LIMIT Minimum transfer rate a server or proxy must provide.
68+
CVMFS_LOW_SPEED_LIMIT Minimum transfer rate in bytes/second a server or proxy must provide.
6969
CVMFS_MAX_EXTERNAL_SERVERS | Limit the number of (geo sorted) stratum 1 servers for external data
7070
| that are effectively used.
7171
CVMFS_MAX_IPADDR_PER_PROXY | Limit the number of IP addresses a proxy names resolves into.
@@ -171,17 +171,14 @@ CVMFS_FILE_MBYTE_LIMIT | Maximum number of megabytes for a publishe
171171
CVMFS_FORCE_REMOUNT_WARNING | Enable/disable warning through ``wall`` and grace period before forcefully
172172
| remounting a CernVM-FS repository on the release managere machine.
173173
CVMFS_GARBAGE_COLLECTION Enables repository garbage collection |br| (Stratum~0 only | if set to *true*)
174-
CVMFS_GENERATE_LEGACY_BULK_CHUNKS | Deprecated, set to *true* to enable generation of whole-file objects for large files.
175174
CVMFS_GC_DELETION_LOG | Log file path to track all garbage collected objects during sweeping
176175
| for bookkeeping or debugging
177176
CVMFS_GEO_DB_FILE Path to externally updated location of geolite2 city database, or 'None' for no database.
178177
CVMFS_GEO_LICENSE_KEY A license key for downloading the geolite2 city database from maxmind.
179178
CVMFS_GID_MAP Path of a file for the mapping of file owner group ids.
180179
CVMFS_HASH_ALGORITHM | Define which secure hash algorithm should be used by CernVM-FS for CAS objects
181180
| (supported are: *sha1*, *rmd160* and *shake128*)
182-
CVMFS_IGNORE_SPECIAL_FILES Set to *true* to skip special files during publish without aborting.
183-
CVMFS_IGNORE_XDIR_HARDLINKS | Deprecated, defaults to *true*
184-
| hardlinks are found. Instead automatically break the hardlinks across directories.
181+
CVMFS_IGNORE_SPECIAL_FILES Set to *true* to skip special files (pipes, sockets, block device and character device files) during publish without aborting.
185182
CVMFS_INCLUDE_XATTRS Set to *true* to process extended attributes
186183
CVMFS_MAX_CHUNK_SIZE Maximal size of a file chunk in bytes (see also *CVMFS_USE_FILE_CHUNKING*)
187184
CVMFS_MAXIMAL_CONCURRENT_WRITES Maximal number of concurrently processed files during publishing.
@@ -235,6 +232,20 @@ X509_CERT_DIR | Directory file with CA certificates for HT
235232
| defaults to /etc/grid-security/certificates (see :ref:`sct_data`)
236233
=================================== ====================================================================================
237234

235+
Deprecated parameters
236+
^^^^^^^^^^^^^^^^^^^^^
237+
238+
Will be removed in future versions.
239+
240+
=================================== ====================================================================================
241+
**Parameter** **Meaning**
242+
=================================== ====================================================================================
243+
CVMFS_GENERATE_LEGACY_BULK_CHUNKS | Deprecated, set to *true* to enable generation of whole-file objects for large files.
244+
CVMFS_IGNORE_XDIR_HARDLINKS | Deprecated, defaults to *true*
245+
| hardlinks are found. Instead automatically break the hardlinks across directories.
246+
=================================== ====================================================================================
247+
248+
238249
Format of CVMFS_UPSTREAM_STORAGE
239250
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
240251

conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
# Theme options are theme-specific and customize the look and feel of a theme
129129
# further. For a list of options available for each theme, see the
130130
# documentation.
131-
#html_theme_options = {}
131+
# html_theme_options = {}
132132

133133
# Add any paths that contain custom themes here, relative to this directory.
134134
#html_theme_path = []
@@ -154,6 +154,12 @@
154154
# so a file named "default.css" will overwrite the builtin "default.css".
155155
html_static_path = ['_static']
156156

157+
# These paths are either relative to html_static_path
158+
# or fully qualified paths (eg. https://...)
159+
html_css_files = [
160+
'css/custom.css',
161+
]
162+
157163
# Add any extra paths that contain custom files (such as robots.txt or
158164
# .htaccess) here, relative to this directory. These files are copied
159165
# directly to the root of the documentation.

0 commit comments

Comments
 (0)