Skip to content

Commit 59b8586

Browse files
author
github-actions
committed
Docs build 2024-07-24
1 parent 0a78329 commit 59b8586

Some content is hidden

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

59 files changed

+142
-135
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 hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: fb5065fefc08f9ca995ef39b6e4e9f9c
3+
config: f9ed93f4f20c842ccfe525a2f87d481d
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/apk`.
1010

1111
.. code:: python
1212
13-
host.get_fact(ApkPackages)
13+
host.get_fact(ApkPackages, )
1414
1515
Returns a dict of installed apk packages:
1616

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/apt`.
1010

1111
.. code:: python
1212
13-
host.get_fact(AptKeys)
13+
host.get_fact(AptKeys, )
1414
1515
Returns information on GPG keys apt has in its keychain:
1616

@@ -31,7 +31,7 @@ Returns information on GPG keys apt has in its keychain:
3131

3232
.. code:: python
3333
34-
host.get_fact(AptSources)
34+
host.get_fact(AptSources, )
3535
3636
Returns a list of installed apt sources:
3737

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/brew`.
1010

1111
.. code:: python
1212
13-
host.get_fact(BrewCasks)
13+
host.get_fact(BrewCasks, )
1414
1515
Returns a dict of installed brew casks:
1616

@@ -28,7 +28,7 @@ Returns a dict of installed brew casks:
2828

2929
.. code:: python
3030
31-
host.get_fact(BrewPackages)
31+
host.get_fact(BrewPackages, )
3232
3333
Returns a dict of installed brew packages:
3434

@@ -46,7 +46,7 @@ Returns a dict of installed brew packages:
4646

4747
.. code:: python
4848
49-
host.get_fact(BrewTaps)
49+
host.get_fact(BrewTaps, )
5050
5151
Returns a list of brew taps.
5252

@@ -58,7 +58,7 @@ Returns a list of brew taps.
5858

5959
.. code:: python
6060
61-
host.get_fact(BrewVersion)
61+
host.get_fact(BrewVersion, )
6262
6363
Returns the version of brew installed as a semantic versioning tuple:
6464

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/bsdinit`.
1010

1111
.. code:: python
1212
13-
host.get_fact(RcdStatus)
13+
host.get_fact(RcdStatus, )
1414
1515
Same as ``initd_status`` but for BSD (/etc/rc.d) systems. Unlike Linux/init.d,
1616
BSD init scripts are well behaved and as such their output can be trusted.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/choco`.
1010

1111
.. code:: python
1212
13-
host.get_fact(ChocoPackages)
13+
host.get_fact(ChocoPackages, )
1414
1515
Returns a dict of installed choco (Chocolatey) packages:
1616

@@ -28,7 +28,7 @@ Returns a dict of installed choco (Chocolatey) packages:
2828

2929
.. code:: python
3030
31-
host.get_fact(ChocoVersion)
31+
host.get_fact(ChocoVersion, )
3232
3333
Returns the choco (Chocolatey) version.
3434

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Deb Facts
88

99
.. code:: python
1010
11-
host.get_fact(DebArch)
11+
host.get_fact(DebArch, )
1212
1313
Returns the architecture string used in apt repository sources, eg ``amd64``.
1414

@@ -32,7 +32,7 @@ Returns information on a .deb archive or installed package.
3232

3333
.. code:: python
3434
35-
host.get_fact(DebPackages)
35+
host.get_fact(DebPackages, )
3636
3737
Returns a dict of installed dpkg packages:
3838

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/dnf`.
1010

1111
.. code:: python
1212
13-
host.get_fact(DnfRepositories)
13+
host.get_fact(DnfRepositories, )
1414
1515
Returns a list of installed dnf repositories:
1616

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Returns ``docker inspect`` output for a single Docker container.
2222

2323
.. code:: python
2424
25-
host.get_fact(DockerContainers)
25+
host.get_fact(DockerContainers, )
2626
2727
Returns ``docker inspect`` output for all Docker containers.
2828

@@ -46,7 +46,7 @@ Returns ``docker inspect`` output for a single Docker image.
4646

4747
.. code:: python
4848
49-
host.get_fact(DockerImages)
49+
host.get_fact(DockerImages, )
5050
5151
Returns ``docker inspect`` output for all Docker images.
5252

@@ -70,7 +70,7 @@ Returns ``docker inspect`` output for a single Docker network.
7070

7171
.. code:: python
7272
73-
host.get_fact(DockerNetworks)
73+
host.get_fact(DockerNetworks, )
7474
7575
Returns ``docker inspect`` output for all Docker networks.
7676

@@ -92,7 +92,7 @@ Returns ``docker inspect`` output for all Docker networks.
9292

9393
.. code:: python
9494
95-
host.get_fact(DockerSystemInfo)
95+
host.get_fact(DockerSystemInfo, )
9696
9797
Returns ``docker system info`` output in JSON format.
9898

@@ -116,7 +116,7 @@ Returns ``docker inspect`` output for a single Docker container.
116116

117117
.. code:: python
118118
119-
host.get_fact(DockerVolumes)
119+
host.get_fact(DockerVolumes, )
120120
121121
Returns ``docker inspect`` output for all Docker volumes.
122122

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/gem`.
1010

1111
.. code:: python
1212
13-
host.get_fact(GemPackages)
13+
host.get_fact(GemPackages, )
1414
1515
Returns a dict of installed gem packages:
1616

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Hardware Facts
88

99
.. code:: python
1010
11-
host.get_fact(BlockDevices)
11+
host.get_fact(BlockDevices, )
1212
1313
Returns a dict of (mounted) block devices:
1414

@@ -32,7 +32,7 @@ Returns a dict of (mounted) block devices:
3232

3333
.. code:: python
3434
35-
host.get_fact(Cpus)
35+
host.get_fact(Cpus, )
3636
3737
Returns the number of CPUs on this server.
3838

@@ -134,7 +134,7 @@ Gets & returns a dictionary of network interface -> list of IPv6 addresses.
134134

135135
.. code:: python
136136
137-
host.get_fact(Memory)
137+
host.get_fact(Memory, )
138138
139139
Returns the memory installed in this server, in MB.
140140

@@ -146,7 +146,7 @@ Returns the memory installed in this server, in MB.
146146

147147
.. code:: python
148148
149-
host.get_fact(NetworkDevices)
149+
host.get_fact(NetworkDevices, )
150150
151151
Gets & returns a dict of network devices. See the ``ipv4_addresses`` and
152152
``ipv6_addresses`` facts for easier-to-use shortcuts to get device addresses.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/launchd`.
1010

1111
.. code:: python
1212
13-
host.get_fact(LaunchdStatus)
13+
host.get_fact(LaunchdStatus, )
1414
1515
Returns a dict of name -> status for launchd managed services.
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/lxd`.
1010

1111
.. code:: python
1212
13-
host.get_fact(LxdContainers)
13+
host.get_fact(LxdContainers, )
1414
1515
Returns a list of running LXD containers
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/pacman`.
1010

1111
.. code:: python
1212
13-
host.get_fact(PacmanPackages)
13+
host.get_fact(PacmanPackages, )
1414
1515
Returns a dict of installed pacman packages:
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/pkg`.
1010

1111
.. code:: python
1212
13-
host.get_fact(PkgPackages)
13+
host.get_fact(PkgPackages, )
1414
1515
Returns a dict of installed pkg packages:
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also: :doc:`../operations/pkgin`.
1010

1111
.. code:: python
1212
13-
host.get_fact(PkginPackages)
13+
host.get_fact(PkginPackages, )
1414
1515
Returns a dict of installed pkgin packages:
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Returns a list of packages that provide the specified capability (command, file,
3939

4040
.. code:: python
4141
42-
host.get_fact(RpmPackages)
42+
host.get_fact(RpmPackages, )
4343
4444
Returns a dict of installed rpm packages:
4545

0 commit comments

Comments
 (0)