summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorFilesLines
2015-05-05treewide: fix typosTorstein Husebø1-1/+1
2015-05-05man: document that nspawn -x, --template= and machinectl clone leave ↵Lennart Poettering2-3/+16
hostname and machine id unmodified
2015-05-05man: nspawn is used in production these days, admit thatLennart Poettering1-5/+2
Previously, the man page suggested to only use nspawn for testing, building, and debugging things. However, it is nowadays used in production and used as building block for rocket, hence let's just admit that it's pretty much production ready.
2015-05-05Add VARIANT as a standard value for /etc/os-releaseStephen Gallagher1-0/+35
Some distributions (such as Fedora) are using the VARIANT field to indicate to select packages which of several default configurations they should be using. For example, VARIANT=Server provides a different default firewall configuration (blocking basically everything but SSH and the management console) whereas VARIANT=Workstation opens many other ports for application compatibility. By adding this patch to the manual pages, we can standardize on a cross-distribution mechanism for accomplishing this. Fedora implementation details are available at https://fedoraproject.org/wiki/Packaging:Per-Product_Configuration (David: drop double paranthesis)
2015-05-02man: use utf-8 in systemd-remount-fs.service(8)Zbigniew Jędrzejewski-Szmek1-3/+3
2015-04-30man: update sd_bus_open() documentationLennart Poettering1-47/+93
Update for current function prototypes. Also, document -ESOCKTNOSUPPORT as being returned when protocol version mismatches are detected.
2015-04-29networkd: add man for vti6 tunnelSusant Sahani1-1/+5
2015-04-29man: document when the various sd-login.h calls return ENXIOLennart Poettering1-11/+46
2015-04-29man: document when the sd_bus_creds_xxx() calls return ENXIOLennart Poettering1-55/+148
2015-04-29man: avoid line break in urlLennart Poettering1-2/+1
2015-04-28fsck: remove fsckd again, but keep the door open for external replacementLennart Poettering2-165/+1
For a longer discussion see this: http://lists.freedesktop.org/archives/systemd-devel/2015-April/030175.html This introduces /run/systemd/fsck.progress as a simply AF_UNIX/SOCK_STREAM socket. If it exists and is connectable we'll connect fsck's -c switch with it. If external programs want to get progress data they should hence listen on this socket and will get all they need via that socket. To get information about the connecting fsck client they should use SO_PEERCRED. Unless /run/systemd/fsck.progress is around and connectable this change reverts back to v219 behaviour where we'd forward fsck output to /dev/console on our own.
2015-04-28run: by default, wait until the transient unit finished start-upLennart Poettering2-2/+14
Make this blocking behaviour optional with --no-block, similar to systemctl's switch of this name.
2015-04-28man: clarify that only the first .network file with a matching [Match] mattersLennart Poettering1-1/+2
http://lists.freedesktop.org/archives/systemd-devel/2015-April/031294.html
2015-04-27man: document that nspawn's --bind= switch may be used multiple timesLennart Poettering1-2/+4
2015-04-24man: extend documentation on IPForward= and IPMasquerade=Lennart Poettering1-2/+20
Mention the default values, and clarify how this relates to the underlying sysctls.
2015-04-24shutdownd: kill the old implementationDaniel Mack2-87/+0
Not that all functionality has been ported over to logind, the old implementation can be removed. There goes one of the oldest parts of the systemd code base.
2015-04-22man: fix example in systemd-run(1)Lennart Poettering1-2/+2
Reported by Holger Reif.
2015-04-22man: elaborate on the order by which tmpfiles operations are executedLennart Poettering1-3/+6
2015-04-21build-sys: move systemd.pc from pkgconfiglibdir back into pkgconfigdatadirLennart Poettering1-1/+0
The original idea of systemd.pc was to contain arch-independent system and systemd information. By exposing libdir as part of the fields (added in eb39a6239c631873db62f6a942e6cb3dab0a2db4), it started to carry arch-dependent data, thus breaking multilib systems. It was then moved to pkgconfiglibdir to deal with this (in aec432c6134146e138124c4130be2ee89dca07fa), but actually the right approach is to simply not include libdir in the .pc file at all. THis patch hence more or less reverts both commits again, and moves the .pc file back into pkgconfigdatadir. As alternative for querying the systems primary libdir there's now "systemd-path system-library-arch", hence a more correct alternative exists for querying this variable from the .pc file.
2015-04-21automount: add expire supportMichael Olbrich2-0/+17
2015-04-21networkd man: fix man and config name.Susant Sahani1-14/+14
Rename bond confs and man as well. [tomegun: dropped a stray comma]
2015-04-20networkd: Add support for bond option.Susant Sahani1-0/+167
This patch adds configurational support for bond option. Test conf: bond.netdev --- [NetDev] Name=bond1 Kind=bond [Bond] ArpAllTargets=all PrimaryReselect=better ArpIntervalSec=10s ArpIpTargets= 192.168.8.102 192.168.8.101 192.168.8.102 --- $cat /proc/net/bonding/bond1 Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) Bonding Mode: load balancing (round-robin) MII Status: up MII Polling Interval (ms): 0 Up Delay (ms): 0 Down Delay (ms): 0 ARP Polling Interval (ms): 10000 ARP IP target/s (n.n.n.n form): 192.168.8.100, 192.168.8.101, 192.168.8.102
2015-04-20networkd vxlan: Add support for enabling UDP checksumsSusant Sahani1-0/+18
Add UDPCheckSum option to enable transmitting UDP checksums when doing VXLAN/IPv4. Add UDP6ZeroChecksumRx, and UDP6ZeroChecksumTx options to enable sending zero checksums and receiving zero checksums in VXLAN/IPv6 [tomegun: rebase manpage due to whitespace changes]
2015-04-17cryptsetup: Implement offset and skip optionsMartin Pitt1-0/+24
These are useful for plain devices as they don't have any metadata by themselves. Instead of using an unreliable hardcoded device name in crypttab you can then put static metadata at the start of the partition for a stable UUID or label. https://bugs.freedesktop.org/show_bug.cgi?id=87717 https://bugs.debian.org/751707 https://launchpad.net/bugs/953875
2015-04-13man: slightly fewer paragraphs can help readabilityLennart Poettering1-14/+12
2015-04-13man: fix examples indentation in tmpfiles.d(5)Lennart Poettering1-3/+3
2015-04-13man: add information about more lines to explanation of argument fieldLennart Poettering1-3/+6
2015-04-13man: document which tmpfiles line types follow symlinksLennart Poettering1-18/+20
Generally, we will not follow symlinks, except for "w". Avoid documentation for now for fifo, device node, directory lines, which currently follow symlinks but better shouldn't.
2015-04-12man: add link to glib in sd_event_run(3)Zbigniew Jędrzejewski-Szmek1-1/+2
2015-04-08man: avoid confusion regarding "time synchronization state"Lennart Poettering1-9/+9
Also, update example in the timedatectl man page to match the actual timedatectl output.
2015-04-08man: remove 'fs' from 'rootfsflags'Zbigniew Jędrzejewski-Szmek1-1/+1
rootfsflags does not appear anywhere else.
2015-04-07logind,systemctl: add reboot to EFI firmware supportJan Janssen1-0/+12
2015-04-07man: fix typos in machinectlRichard Maw1-4/+4
The s/now/not/ unfortunately inverted the meaning.
2015-04-07man: Resolve how to refer to derived names for machinectl containersRichard Maw1-2/+2
"the name it is" is clumsy english, and since the most recently referred to thing was a name anyway we can just leave the "it is". This matches later uses in the same document.
2015-04-07timedatectl: avoid specifically referring to NTPLennart Poettering1-7/+12
systemd-timesyncd not only does NTP, but also manages clock monotonicity using a flags file. In future, it might learn PTP support. Hence don't expose its enablement state as "NTP" but use the more generic term "network time synchronization". After all, for similar reasons systemd-timesyncd is not called systemd-ntpd.
2015-04-07man: update timedatectl(1)'s examplesLennart Poettering1-22/+19
The output didn't match what we output these days. Also, "set-ntp" cannot be used to control chronyd anymore.
2015-04-07man: document in timedatectl(1) that the NTP state shown reflects whether ↵Lennart Poettering1-4/+8
timesyncd is enabled
2015-04-07man: document default timeouts and start limit parametersLennart Poettering1-2/+9
2015-04-02man: don't mention "journalctl /dev/sda"Lennart Poettering1-5/+0
It never worked, and nobody ever worked on it, hence don't mention it.
2015-03-31man: fix line breaks in code examplesLennart Poettering1-3/+3
2015-03-24man: Second example systemd-socket-proxyd does not need a Unix socket listener.David Strauss1-1/+0
2015-03-22man: add journal-remote.conf(5)Chris Morgan2-0/+115
2015-03-19man: add h/H to tmpfiles.d(5)Goffredo Baroncelli1-1/+37
2015-03-15man: standard-conf: change directory reference to wildcardAlison Chaiken1-1/+1
2015-03-15network: add UseNTP DHCP optionMichael Marineau1-0/+8
Despite having the internal logic in place to enable/disable using NTP servers provided by DHCP the network config didn't expose the option.
2015-03-14man: add sd_event_{run,wait,prepare,dispatch,loop}Zbigniew Jędrzejewski-Szmek2-0/+395
2015-03-13man: fix indentation of copyright headersZbigniew Jędrzejewski-Szmek16-192/+192
2015-03-13man: no paren in linkZbigniew Jędrzejewski-Szmek1-1/+1
2015-03-13man: fix name of systemd.journal-fields(7)Zbigniew Jędrzejewski-Szmek1-1/+1
2015-03-13man: fix link to strerror(3)Zbigniew Jędrzejewski-Szmek1-2/+2