-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
antsibull-docs changes andn package update
- Loading branch information
1 parent
944999b
commit cfe1134
Showing
16 changed files
with
3,043 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
changelog_filename_template: ../CHANGELOG.rst | ||
changelog_filename_version_depth: 0 | ||
changes_file: changelog.yaml | ||
changes_format: combined | ||
ignore_other_fragment_extensions: true | ||
keep_fragments: false | ||
mention_ancestor: true | ||
new_plugins_after_name: removed_features | ||
notesdir: fragments | ||
prelude_section_name: release_summary | ||
prelude_section_title: Release Summary | ||
sanitize_changelog: true | ||
sections: | ||
- - major_changes | ||
- Major Changes | ||
- - minor_changes | ||
- Minor Changes | ||
- - breaking_changes | ||
- Breaking Changes / Porting Guide | ||
- - deprecated_features | ||
- Deprecated Features | ||
- - removed_features | ||
- Removed Features (previously deprecated) | ||
- - security_fixes | ||
- Security Fixes | ||
- - bugfixes | ||
- Bugfixes | ||
- - known_issues | ||
- Known Issues | ||
title: Ericsysmin.Docker | ||
trivial_section_name: trivial | ||
use_fqcn: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Created with antsibull-docs 2.6.1 | ||
|
||
/temp-rst | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Created with antsibull-docs 2.6.1 | ||
|
||
breadcrumbs = true | ||
indexes = true | ||
use_html_blobs = false | ||
|
||
# You can specify ways to convert a collection name (<namespace>.<name>) to an URL here. | ||
# You can replace either of <namespace> or <name> by "*" to match all values in that place, | ||
# or use "*" for the collection name to match all collections. In the URL, you can use | ||
# {namespace} and {name} for the two components of the collection name. If you want to use | ||
# "{" or "}" in the URL, write "{{" or "}}" instead. Basically these are Python format | ||
# strings (https://docs.python.org/3.8/library/string.html#formatstrings). | ||
collection_url = { | ||
* = "https://galaxy.ansible.com/ui/repo/published/{namespace}/{name}/" | ||
} | ||
|
||
# The same wildcard rules and formatting rules as for collection_url apply. | ||
collection_install = { | ||
* = "ansible-galaxy collection install {namespace}.{name}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Created with antsibull-docs 2.6.1 | ||
|
||
set -e | ||
|
||
pushd "$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" | ||
trap "{ popd; }" EXIT | ||
|
||
# Create collection documentation into temporary directory | ||
rm -rf temp-rst | ||
mkdir -p temp-rst | ||
chmod og-w temp-rst # antsibull-docs wants that directory only readable by itself | ||
antsibull-docs \ | ||
--config-file antsibull-docs.cfg \ | ||
collection \ | ||
--use-current \ | ||
--dest-dir temp-rst \ | ||
ericsysmin.docker | ||
|
||
# Copy collection documentation into source directory | ||
rsync -cprv --delete-after temp-rst/collections/ rst/collections/ | ||
|
||
# Build Sphinx site | ||
sphinx-build -M html rst build -c . -W --keep-going | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Created with antsibull-docs 2.6.1 | ||
|
||
# This file only contains a selection of the most common options. For a full list see the | ||
# documentation: | ||
# http://www.sphinx-doc.org/en/master/config | ||
|
||
project = 'Ansible collections' | ||
copyright = 'Ansible contributors' | ||
|
||
title = 'Ansible Collections Documentation' | ||
html_short_title = 'Ansible Collections Documentation' | ||
|
||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx_antsibull_ext'] | ||
|
||
pygments_style = 'ansible' | ||
|
||
highlight_language = 'YAML+Jinja' | ||
|
||
html_theme = 'sphinx_ansible_theme' | ||
html_show_sphinx = False | ||
|
||
display_version = False | ||
|
||
html_use_smartypants = True | ||
html_use_modindex = False | ||
html_use_index = False | ||
html_copy_source = False | ||
|
||
# See https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping for the syntax | ||
intersphinx_mapping = { | ||
'python': ('https://docs.python.org/2/', (None, '../python2.inv')), | ||
'python3': ('https://docs.python.org/3/', (None, '../python3.inv')), | ||
'jinja2': ('http://jinja.palletsprojects.com/', (None, '../jinja2.inv')), | ||
'ansible_devel': ('https://docs.ansible.com/ansible/devel/', (None, '../ansible_devel.inv')), | ||
# If you want references to resolve to a released Ansible version (say, `5`), uncomment and replace X by this version: | ||
# 'ansibleX': ('https://docs.ansible.com/ansible/X/', (None, '../ansibleX.inv')), | ||
} | ||
|
||
default_role = 'any' | ||
|
||
nitpicky = True | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# Created with antsibull-docs 2.6.1 | ||
|
||
antsibull-docs >= 2.0.0, < 3.0.0 | ||
ansible-pygments | ||
sphinx | ||
sphinx-ansible-theme >= 0.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
:orphan: | ||
|
||
.. meta:: | ||
:antsibull-docs: 2.6.1 | ||
|
||
.. _list_of_collection_env_vars: | ||
|
||
Index of all Collection Environment Variables | ||
============================================= | ||
|
||
The following index documents all environment variables declared by plugins in collections. | ||
Environment variables used by the ansible-core configuration are documented in :ref:`ansible_configuration_settings`. | ||
|
||
No environment variables have been defined. |
Oops, something went wrong.