Skip to content

Commit c2620b6

Browse files
author
github-actions
committed
Docs build 2025-10-14
1 parent 24676f5 commit c2620b6

File tree

173 files changed

+6877
-6842
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+6877
-6842
lines changed

en/3.x/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: c46cb1a6700ac9fc829e1e771d50a254
3+
config: bb361a9241a8f5d26dbe1c4252f17c59
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

en/3.x/_sources/facts/apk.rst.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Apk Facts
1010
1111
host.get_fact(ApkPackages, )
1212
13-
rns a dict of installed apk packages:
13+
Returns a dict of installed apk packages:
1414

15-
ode:: python
15+
.. code:: python
1616
17-
{
18-
"package_name": ["version"],
19-
}
17+
{
18+
"package_name": ["version"],
19+
}
2020

en/3.x/_sources/facts/apt.rst.txt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ Apt Facts
1010
1111
host.get_fact(AptKeys, )
1212
13-
rns information on GPG keys apt has in its keychain:
13+
Returns information on GPG keys apt has in its keychain:
1414

15-
ode:: python
15+
.. code:: python
1616
17-
{
18-
"KEY-ID": {
19-
"length": 4096,
20-
"uid": "Oxygem <hello@oxygem.com>"
21-
},
22-
}
17+
{
18+
"KEY-ID": {
19+
"length": 4096,
20+
"uid": "Oxygem <hello@oxygem.com>"
21+
},
22+
}
2323
2424
2525
.. _facts:apt.AptSources:
@@ -31,18 +31,18 @@ ode:: python
3131
3232
host.get_fact(AptSources, )
3333
34-
rns a list of installed apt sources:
34+
Returns a list of installed apt sources:
3535

36-
ode:: python
36+
.. code:: python
3737
38-
[
39-
{
40-
"type": "deb",
41-
"url": "http://archive.ubuntu.org",
42-
"distribution": "trusty",
43-
"components", ["main", "multiverse"],
44-
},
45-
]
38+
[
39+
{
40+
"type": "deb",
41+
"url": "http://archive.ubuntu.org",
42+
"distribution": "trusty",
43+
"components", ["main", "multiverse"],
44+
},
45+
]
4646
4747
4848
.. _facts:apt.SimulateOperationWillChange:
@@ -54,5 +54,5 @@ ode:: python
5454
5555
host.get_fact(SimulateOperationWillChange, command)
5656
57-
late an 'apt-get' operation and try to detect if any changes would be performed.
57+
Simulate an 'apt-get' operation and try to detect if any changes would be performed.
5858

en/3.x/_sources/facts/brew.rst.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Brew Facts
1010
1111
host.get_fact(BrewCasks, )
1212
13-
rns a dict of installed brew casks:
13+
Returns a dict of installed brew casks:
1414

15-
ode:: python
15+
.. code:: python
1616
17-
{
18-
"package_name": ["version"],
19-
}
17+
{
18+
"package_name": ["version"],
19+
}
2020
2121
2222
.. _facts:brew.BrewPackages:
@@ -28,13 +28,13 @@ ode:: python
2828
2929
host.get_fact(BrewPackages, )
3030
31-
rns a dict of installed brew packages:
31+
Returns a dict of installed brew packages:
3232

33-
ode:: python
33+
.. code:: python
3434
35-
{
36-
"package_name": ["version"],
37-
}
35+
{
36+
"package_name": ["version"],
37+
}
3838
3939
4040
.. _facts:brew.BrewTaps:
@@ -46,7 +46,7 @@ ode:: python
4646
4747
host.get_fact(BrewTaps, )
4848
49-
rns a list of brew taps.
49+
Returns a list of brew taps.
5050

5151

5252
.. _facts:brew.BrewVersion:
@@ -58,9 +58,9 @@ rns a list of brew taps.
5858
5959
host.get_fact(BrewVersion, )
6060
61-
rns the version of brew installed as a semantic versioning tuple:
61+
Returns the version of brew installed as a semantic versioning tuple:
6262

63-
ode:: python
63+
.. code:: python
6464
65-
[major, minor, patch]
65+
[major, minor, patch]
6666

en/3.x/_sources/facts/bsdinit.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Bsdinit Facts
1010
1111
host.get_fact(RcdStatus, )
1212
13-
as ``initd_status`` but for BSD (/etc/rc.d) systems. Unlike Linux/init.d,
14-
init scripts are well behaved and as such their output can be trusted.
13+
Same as ``initd_status`` but for BSD (/etc/rc.d) systems. Unlike Linux/init.d,
14+
BSD init scripts are well behaved and as such their output can be trusted.
1515

en/3.x/_sources/facts/cargo.rst.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Cargo Facts
1010
1111
host.get_fact(CargoPackages, )
1212
13-
rns a dict of installed cargo packages globally:
13+
Returns a dict of installed cargo packages globally:
1414

15-
ode:: python
15+
.. code:: python
1616
17-
{
18-
"package_name": ["version"],
19-
}
17+
{
18+
"package_name": ["version"],
19+
}
2020

en/3.x/_sources/facts/choco.rst.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Choco Facts
1010
1111
host.get_fact(ChocoPackages, )
1212
13-
rns a dict of installed choco (Chocolatey) packages:
13+
Returns a dict of installed choco (Chocolatey) packages:
1414

15-
ode:: python
15+
.. code:: python
1616
17-
{
18-
"package_name": ["version"],
19-
}
17+
{
18+
"package_name": ["version"],
19+
}
2020
2121
2222
.. _facts:choco.ChocoVersion:
@@ -28,5 +28,5 @@ ode:: python
2828
2929
host.get_fact(ChocoVersion, )
3030
31-
rns the choco (Chocolatey) version.
31+
Returns the choco (Chocolatey) version.
3232

en/3.x/_sources/facts/crontab.rst.txt

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,36 @@ Crontab Facts
1010
1111
host.get_fact(Crontab, user=None)
1212
13-
rns a dictionary of CrontabFile.
14-
15-
ode:: python
16-
17-
# CrontabFile.items()
18-
{
19-
"/path/to/command": {
20-
"minute": "*",
21-
"hour": "*",
22-
"month": "*",
23-
"day_of_month": "*",
24-
"day_of_week": "*",
25-
},
26-
"echo another command": {
27-
"special_time": "@daily",
28-
},
29-
}
30-
# or CrontabFile.to_json()
31-
[
32-
{
33-
command: "/path/to/command",
34-
minute: "*",
35-
hour: "*",
36-
month: "*",
37-
day_of_month: "*",
38-
day_of_week: "*",
39-
},
13+
Returns a dictionary of CrontabFile.
14+
15+
.. code:: python
16+
17+
# CrontabFile.items()
4018
{
41-
"command": "echo another command
42-
"special_time": "@daily",
19+
"/path/to/command": {
20+
"minute": "*",
21+
"hour": "*",
22+
"month": "*",
23+
"day_of_month": "*",
24+
"day_of_week": "*",
25+
},
26+
"echo another command": {
27+
"special_time": "@daily",
28+
},
4329
}
44-
]
30+
# or CrontabFile.to_json()
31+
[
32+
{
33+
"command": "/path/to/command",
34+
"minute": "*",
35+
"hour": "*",
36+
"month": "*",
37+
"day_of_month": "*",
38+
"day_of_week": "*",
39+
},
40+
{
41+
"command": "echo another command",
42+
"special_time": "@daily",
43+
}
44+
]
4545

en/3.x/_sources/facts/deb.rst.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Deb Facts
1010
1111
host.get_fact(DebArch, )
1212
13-
rns the architecture string used in apt repository sources, eg ``amd64``.
13+
Returns the architecture string used in apt repository sources, eg ``amd64``.
1414

1515

1616
.. _facts:deb.DebPackage:
@@ -22,7 +22,7 @@ rns the architecture string used in apt repository sources, eg ``amd64``.
2222
2323
host.get_fact(DebPackage, package)
2424
25-
rns information on a .deb archive or installed package.
25+
Returns information on a .deb archive or installed package.
2626

2727

2828
.. _facts:deb.DebPackages:
@@ -34,11 +34,11 @@ rns information on a .deb archive or installed package.
3434
3535
host.get_fact(DebPackages, )
3636
37-
rns a dict of installed dpkg packages:
37+
Returns a dict of installed dpkg packages:
3838

39-
ode:: python
39+
.. code:: python
4040
41-
{
42-
"package_name": ["version"],
43-
}
41+
{
42+
"package_name": ["version"],
43+
}
4444

en/3.x/_sources/facts/dnf.rst.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ Dnf Facts
1010
1111
host.get_fact(DnfRepositories, )
1212
13-
rns a list of installed dnf repositories:
14-
15-
ode:: python
16-
17-
[
18-
{
19-
"repoid": "baseos",
20-
"name": "AlmaLinux $releasever - BaseOS",
21-
"mirrorlist": "https://mirrors.almalinux.org/mirrorlist/$releasever/baseos",
22-
"enabled": "1",
23-
"gpgcheck": "1",
24-
"countme": "1",
25-
"gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9",
26-
"metadata_expire": "86400",
27-
"enabled_metadata": "1"
28-
},
29-
]
13+
Returns a list of installed dnf repositories:
14+
15+
.. code:: python
16+
17+
[
18+
{
19+
"repoid": "baseos",
20+
"name": "AlmaLinux $releasever - BaseOS",
21+
"mirrorlist": "https://mirrors.almalinux.org/mirrorlist/$releasever/baseos",
22+
"enabled": "1",
23+
"gpgcheck": "1",
24+
"countme": "1",
25+
"gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9",
26+
"metadata_expire": "86400",
27+
"enabled_metadata": "1"
28+
},
29+
]
3030

0 commit comments

Comments
 (0)