summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorFilesLines
2014-03-25time: support @ syntax for denoting times since the UNIX epoch 1970-1-1Lennart Poettering1-5/+11
2014-03-25systemctl: add more verbose explanation of --kill-who and what control/main ↵Lennart Poettering1-5/+30
processes are
2014-03-25systemctl: --kill-mode is long long gone, don't mention it in the man pageLennart Poettering1-3/+2
2014-03-25man: be more specific when EnvironmentFile= is readLennart Poettering1-3/+8
http://lists.freedesktop.org/archives/systemd-devel/2014-March/018004.html
2014-03-25man: explain that the journal field SYSLOG_IDENTIFIER is usually derived ↵Lennart Poettering1-1/+4
from program_invocation_short_name
2014-03-24core: remove tcpwrap supportLennart Poettering1-25/+0
tcpwrap is legacy code, that is barely maintained upstream. It's APIs are awful, and the feature set it exposes (such as DNS and IDENT access control) questionnable. We should not support this natively in systemd. Hence, let's remove the code. If people want to continue making use of this, they can do so by plugging in "tcpd" for the processes they start. With that scheme things are as well or badly supported as they were from traditional inetd, hence no functionality is really lost.
2014-03-24core: add a setting to globally control the default for timer unit accuracyLennart Poettering1-3/+25
2014-03-24timer: support timers that can resume the system from suspendLennart Poettering1-0/+17
2014-03-21man: document ARM root partition typesLennart Poettering1-0/+10
2014-03-21timer: add timer persistance (aka anacron-like behaviour)Lennart Poettering1-0/+22
2014-03-20unit: turn off mount propagation for udevdLennart Poettering1-6/+36
Keep mounts done by udev rules private to udevd. Also, document how MountFlags= may be used for this.
2014-03-19man: improve documentation of fs namespace related settingsLennart Poettering1-33/+72
2014-03-18man: dcument sd_bus_negotiate_fds() and friendsLennart Poettering1-0/+176
2014-03-18core: drop CAP_MKNOD when PrivateDevices= is setLennart Poettering1-2/+5
2014-03-18machinectl: reimplement machinectl's "reboot" verb on top of "kill", and add ↵Lennart Poettering1-27/+45
new verb "poweroff" There's really no point to send the reboot SIGINT from machinectl directly, if machined can do that anyway. This saves code, and makes machinectl network transparent for these verbs. And while we are at it we can easily add a "poweroff" verb in addition to "reboot". Yay!
2014-03-17man: networkd - additional examples related to bridgingpoma3-3/+26
2014-03-17sd-login: add calls that retrieve credentials of peers connected to AF_UNIX ↵Lennart Poettering1-5/+63
peers This is supposed to be an extension of SO_PEERCRED and SO_PEERSEC, except for cgroup information.
2014-03-17man: improve wording of systemctl's --after/--beforeJason St. John1-3/+18
Commit 4a77ca7 was an attempt at fixing the wording of --after and --before, but the new wording was unclear. Split the combined --after/--before section into a separate section for each, explicitly state what each option does, and add information about how these lists are generated. Reported-by: Andrey Borzenkov <arvidjaar@gmail.com> Reported-by: Lennart Poettering <lennart@poettering.net>
2014-03-17journal-remote: implement inheriting http(s) socketsZbigniew Jędrzejewski-Szmek1-10/+20
Now --listen-http=-3 --listen-https=-4 can be used to spawn a µhttpd server on those two ports, in http and https modes respectively. As before, --listen-http=3 --listen-https=4 will launch µhttpd servers on ports 3 and 4.
2014-03-17journal-remote: HTTP(s) supportZbigniew Jędrzejewski-Szmek1-3/+18
The whole tool is made dependent on µhttpd availability. It should be easy to make the µhttpd parts conditional, but since transfer over HTTP seems to be the primary use case, currently this is not done. Current implementation uses nested epoll loops: sd-event is used for the external event loop, and µhttpd uses epoll in its own loop. Unfortunately µhttpd does not expose enough information to add the descriptors it uses to the external event loop. This means that starvation of other events is possible, if one of the inner µhttpd loops is constantly busy. This means that µhttpd servers should not be mixed with other sources. The TLS authentication parts haven't been really tested properly, and should not be take too seriously.
2014-03-17journal-remote: tool to receive messages over the networkZbigniew Jędrzejewski-Szmek1-0/+289
2014-03-17systemctl: introduce -r switch to show units running in local containers in ↵Lennart Poettering1-0/+12
addition to the host
2014-03-14journald: add support for wall forwardingSebastian Thorarensen3-18/+28
This will let journald forward logs as messages sent to all logged in users (like wall). Two options are added: * ForwardToWall (default yes) * MaxLevelWall (default emerg) 'ForwardToWall' is overridable by kernel command line option 'systemd.journald.forward_to_wall'. This is used to emulate the traditional syslogd behaviour of sending emergency messages to all logged in users.
2014-03-14tmpfiles: add --root option to operate on an alternate fs treeMichael Marineau1-2/+10
This makes it possible to initialize or cleanup an arbitrary filesystem hierarchy in the same way that it would be during system boot.
2014-03-14machine-id-setup: use path_kill_slashes and modernizationsZbigniew Jędrzejewski-Szmek1-3/+4
2014-03-14man: network - clarify which options may be specified more than once.Tom Gundersen1-5/+8
2014-03-14machine-id: add --root option to operate on an alternate fs treeGreg KH1-0/+8
This makes it possible to initialize the /etc/machine-id file on an arbitrary filesystem hierarchy. This helps systems that wish to run this at image creation time in a subdirectory, or from initramfs before pivot-root is called. [tomegun: converted to using _cleanup_free_ macros]
2014-03-14networkd: allow more than one static DNS serverTom Gundersen1-2/+2
2014-03-14logind: automatically remove SysV + POSIX IPC objects when the users owning ↵Lennart Poettering1-0/+20
them fully log out
2014-03-12systemctl: when "systemctl status" is called without arguments show a short ↵Lennart Poettering1-4/+5
overall system state Previously "systemctl status" without argument would print the status of all loaded units. This has now been moved to "systemctl status -a".
2014-03-12systemctl: add new "list-machines" commandLennart Poettering1-0/+18
"systemctl list-machines" shows one line per local container which includes the current system state of the container, the number of failed units as well as the number of currently queued jobs.
2014-03-11man: improve nspawn's --user= documentationLennart Poettering1-7/+9
2014-03-11bus: replace sd_bus_label_{escape,unescape}() by new ↵Lennart Poettering2-111/+150
sd_bus_path_{encode,decode}() The new calls work similarly, but enforce a that a common, fixed bus path prefix is used. This follows discussions with Simon McVittie on IRC that it should be a good idea to make sure that people don't use the escaping applied here too wildly as anything other than the last label of a bus path.
2014-03-11core: support globbing matches in DeviceAllow= when checking for device groupsLennart Poettering1-4/+8
2014-03-11man: fix description of systemctl --after/--beforeAndrey Borzenkov1-2/+2
It was backward - --after fetches After property, so units shown really come *before* unit given as argument. Same for --before.
2014-03-11man: multiple sleep modes are to be separated by whitespace, not commasLennart Poettering1-2/+2
As pointed out by Jason A. Donenfeld.
2014-03-10nspawn: add --image= switch to boot GPT disk images that follow the ↵Lennart Poettering1-4/+33
Discoverable Partitions Specification
2014-03-10man: fix formatting of uuidsLennart Poettering1-5/+5
2014-03-09man: fix example in systemd.linkpoma1-17/+15
'man/systemd.link.xml' recovery from: commit eac684ef1c29684b1bcd27a89c38c202e568e469 Author: Tom Gundersen <teg@jklm.no> Date: Tue Feb 25 19:30:40 2014 +0100 man: split out systemd.net{work,dev}(5) from systemd-networkd(8)
2014-03-07man: reference the Discoverable Partitions Spec from the gpt-auto-generator ↵Lennart Poettering1-6/+8
man page
2014-03-07man: add missing commaZbigniew Jędrzejewski-Szmek1-1/+1
marcosf0> missing comma in udevadm "see also" section
2014-03-06build-sys: update intructions for Makefile-man.am regenerationZbigniew Jędrzejewski-Szmek1-2/+2
2014-03-06man: describe functions for appending to messagesZbigniew Jędrzejewski-Szmek5-0/+991
2014-03-07gpt-auto-generator: automatically find the root disk of the systemLennart Poettering1-19/+39
When run in an initrd and no root= argument is set (or is set to root=gpt-auto) we will automatically look for the root partition on the same disk the EFI ESP is located on. Since we look for swap, /home and /srv on the disk the root partition is located on, we hence have a fully discoverable chain: Firmware discovers the EFI ESP partition → the initrd discovers the root partition → the host OS discovers swap, /home, and /srv. Note that this requires an EFI boot loader that sets the LoaderDevicePartUUID EFI variable, such as Gummiboot.
2014-03-06man: systemd-bootchart - fix spacing in commandZachary Cook1-2/+2
Use the same formatting as the systemd-analyze man page, so that man shows a space.
2014-03-06man: update link to LSBZbigniew Jędrzejewski-Szmek1-2/+2
https://bugzilla.redhat.com/show_bug.cgi?id=1073402
2014-03-06man: bring gpt-auto-generator up to dateLennart Poettering1-17/+67
2014-03-05man: ipv4 link-localUmut Tezduyar Lindskog1-0/+9
2014-03-05systemd-run: make sure --nice=, --uid=, --gid=, --setenv= also work in ↵Lennart Poettering1-9/+3
--scope mode
2014-03-05man: document missing options of systemd-runLennart Poettering1-11/+60