summaryrefslogtreecommitdiffstats
path: root/man/org.freedesktop.machine1.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* man: drop whitespace from final <programlisting> linesZbigniew Jędrzejewski-Szmek2024-11-081-4/+4
| | | | | | In the troff output, this doesn't seem to make any difference. But in the html output, the whitespace is sometimes preserved, creating an additional gap before the following content. Drop it everywhere to avoid this.
* man: link up D-Bus API docs from daemon man pagesLennart Poettering2024-11-051-0/+9
| | | | | | | | | | Let's systematically make sure that we link up the D-Bus interfaces from the daemon man pages once in prose and once in short form at the bottom ("See Also"), for all daemons. Also, add reverse links at the bottom of the D-Bus API docs. Fixes: #34996
* tree-wise: use "lightweight" spellingZbigniew Jędrzejewski-Szmek2024-10-181-1/+1
| | | | | Both spellings were used, but the dictionary says that "lightweight" is the standard spelling.
* machine: fix bus method argument name: who -> whomYu Watanabe2024-09-201-1/+1
| | | | Follow-up for cd2fb04960b8aa0b353d12005b8cfc3b9d2bcfee.
* Fix confusion between killer and preyZbigniew Jędrzejewski-Szmek2024-06-191-1/+1
| | | | | "who" is the entity doing the killing, "whom" is the target. Follow-up for 4ccde410a3fc141c9ddf285f24a22dfea99e0287.
* man: update links to "New Control Group Interfaces"Zbigniew Jędrzejewski-Szmek2024-05-281-1/+1
|
* machined: add GetMachineSSHInfo methodSam Leonard2024-05-081-3/+40
| | | | | | | | | | | Also adds three properties: - VsockCid: the VSOCK CID of the VM - SshAddress: the address of the VM in a format SSH can connect to - SshPrivateKeyPath: the path to the SSH private key to use to connect to the VM. GetMachineSSHInfo is essentially a convenience method to query both the SshAddress and SshPrivateKeyPath properties at once.
* man: suffix signals with ()Frantisek Sumsal2024-01-231-6/+4
| | | | | | | | | Since signals can take arguments, let's suffix them with () as we already do with functions. To make sure we remain consistent, make the `update-dbus-docs.py` script check & fix any occurrences where this is not the case. Resolves: #31002
* man: use same version in public and system ident.David Tardon2023-12-251-1/+1
|
* man: add version information for dbus interfacesAbderrahim Kitouni2023-09-191-0/+14
| | | | | These only go back to version 250 which is the first version to provide the export-dbus-interfaces build target.
* machinectl: Add plumbing for a `--force` flag for file copyAlexander Wilson2022-07-271-2/+32
| | | | | | machine: Add APIs CopyTo[Machine]WithFlags + CopyFrom[Machine]WithFlags - Same API to those without `WithFlags` (except this can take flags) - Initially, only a flag to allow replacing a file if it already exists
* tree-wide: streamline wiki linksBenjamin Franzke2022-05-211-1/+1
| | | | | | | | * Avoid traling slash as most links are defined without. * Always use https:// protocol and www. subdomain Allows for easier tree-wide linkvalidation for our migration to systemd.io.
* man: deduplicate dbus versioning refZbigniew Jędrzejewski-Szmek2022-05-051-6/+1
|
* man: also add anotations for methodsYu Watanabe2021-12-241-0/+5
| | | | Fixes #21882.
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* man: import lxml formatting changesZbigniew Jędrzejewski-Szmek2020-08-221-1/+1
| | | | lxml insists on this, see 4fb222c4b29ec2a1a451a1e0e99c5d3c520395ab.
* man: fix links to various external man pagesZbigniew Jędrzejewski-Szmek2020-06-251-1/+2
| | | | | In cases where we used both die-net and man-pages for the same reference, I switched to use man-pages everywhere.
* man: use --bus-introspect to autogenerate dbus api docsZbigniew Jędrzejewski-Szmek2020-05-051-10/+26
| | | | | | This has the advantage that the executables are always in place and we don't need any units to exist on the bus, so we can eventually hook this up into a normal build system. (Probably as a build time check.)
* man: add markers to put all dbus entities in the directives indexZbigniew Jędrzejewski-Szmek2020-04-211-1/+179
| | | | | | | | Follow-up for f92c8d1c67bcdeba097e3203d8aafe3a31230ada. directives.index: - This index contains 3398 entries in 19 sections, referring to 333 individual + This index contains 4316 entries in 19 sections, referring to 333 individual
* D-Bus docs: Use method instead of callDaan De Meyer2020-04-191-2/+2
|
* man: fixes from online reviewDaan De Meyer2020-04-161-62/+62
| | | | Also includes the issues pointed out by @boucman.
* man: run dbus api docs through the updaterZbigniew Jędrzejewski-Szmek2020-04-161-33/+75
| | | | | | | | | | | | This replaces the api export tables with updated versions, and inserts comments for all "undocumented" items. The slow work of documented them is left for later ;) lxml does some formatting changes that are not significant for lxml processing, but generate spurious difference in the diff (namely: ulinks become one-line, and double quotes are used instead of single quotes for element attribute values). This should be a one-time thing: subsequent renegeration should be idempotent with regards to this.
* man: import org.freedesktop.import1(3) from the wikiZbigniew Jędrzejewski-Szmek2020-04-121-1/+1
|
* man: import org.freedesktop.machine1(3) from the wikiZbigniew Jędrzejewski-Szmek2020-04-121-0/+406
The wiki was primarily describing the D-Bus API, but it also had a large introduction to the daemon functionality. I moved that latter part into the page that describes the daemon, and the API description into the new page. This is mostly a straighforward import. Apart from some required formatting changes, I removed obvious repetitions, and made tiny grammar and typo fixes where I noticed them. The goal is not to have a perfect text immediately. <interfacename>org.foo.bar</interface> is used for interface names, <function>function()</function> for methods, and <function>signal</function> (no parentheses) for signal names. In D-Bus, signals are similar to methods, and docbook doesn't have a nice tag for them.