summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2011-09-23condition: optionally test against type of virtualization (vm vs. container)Lennart Poettering
2011-09-23util: detect systemd-nspawn without relying on ns cgroup treeLennart Poettering
2011-09-22man: document that PathChanged= does not care for simple writes but only for ↵Lennart Poettering
close()-after-write()
2011-09-22man: document pkg-config line for sd-daemonLennart Poettering
2011-09-22man: document that sd-daemon.[ch] is now available as shared libraryLennart Poettering
2011-09-21condition: add ConditionPathIsSymbolicLinkMichal Schmidt
2011-09-21condition: always follow symlinks for condition checks, to mimic testLennart Poettering
2011-09-21unit: introduce ConditionPathIsMountPoint=Lennart Poettering
2011-09-20man: document which condition tests follow symlinksMichal Schmidt
ConditionPathExists and ConditionFileIsExecutable follow symlinks. ConditionPathIsDirectory does not follow symlinks. (XXX: is this actually the desired behavior?)
2011-09-06man: list specifiers in a tableMathieu Bridon
It was noted on IRC that the current layout is not necessarily the easiest to parse by humans. I personnally struggled understanding it the first time I read it. Hopefully, this change makes it easier to understand. Note: I only reformatted the information that was already present in the documentation, I didn't add anything.
2011-09-06man: fix typo in systemd manual pageAlbert Strasheim
2011-08-31locale: support $LANGUAGE tooLennart Poettering
$LANGUAGE is a GNU extension that is probably worth supporting, since it allows specifiying an order of languages. https://bugs.freedesktop.org/show_bug.cgi?id=40510
2011-08-31man: document /etc/timezoneLennart Poettering
2011-08-31man: don't recommend After=syslog.target anymore since we don't support ↵Lennart Poettering
non-socket-activatable syslogs anymore where that was ncessary
2011-08-30service: change default stdout/stderr to syslogLennart Poettering
2011-08-30stdout-bridge: rename logger to stdout-syslog-bridge to make it more descriptiveLennart Poettering
2011-08-29man: fix securebits docsLennart Poettering
2011-08-24man: Sort the entries in systemd.special(7)Josh Triplett
This manpage presents the special targets in alphabetical order, but time-sync.target appeared in the wrong place.
2011-08-23cgroup: optionally mount a specific cgroup controllers together, and add ↵Lennart Poettering
cpu+cpuacct to the default
2011-08-21exec: allow passing arbitrary path names to blkio cgroup attributesLennart Poettering
If a device node is specified, then adjust the bandwidth/weight of it, otherwise find the backing block device of the file system the path refers to and adjust its bandwidth/weight.
2011-08-21exec: add high-level controls for blkio cgroup attributesLennart Poettering
2011-08-20exec: optionally apply cgroup attributes to the cgroups we createLennart Poettering
2011-08-02exec: introduce PrivateNetwork= process option to turn off network access to ↵Lennart Poettering
specific services
2011-08-02man: nspawn fixesLennart Poettering
2011-08-02nspawn: add new --no-net switch to turn off networking in the containerLennart Poettering
2011-08-01man: loginctl has lock/unlock with a -session suffixMiklos Vajna
Hi, The systemd-loginctl manpage talks about lock/unlock while in fact it1s lock-sesion/unlock-session. The attached patch fixes this issue. Thanks.
2011-08-01man: Fix command name in systemd-tmpfiles example.Ville Skyttä
2011-08-01man: document that we default to 022 as umaskLennart Poettering
2011-07-25machine-id: be nice and generate compliant v4 UUIDsLennart Poettering
Newly generated machine IDs now qualify as randomized v4 UUIds. This is trivial to do and hopefully increases adoption of the ID for various purposes.
2011-07-25systemctl: hook up new install logicLennart Poettering
This adds a number of new options to systemctl, for presets, reenabling, masking/unmask, and runtime operations.
2011-07-23systemctl: remove monitor command since it is mostly uselessLennart Poettering
2011-07-23systemctl: split --help into multiple sectionsLennart Poettering
2011-07-23manager: add log control via RT signalsLennart Poettering
2011-07-13man: add a couple of crosslinksLennart Poettering
2011-07-13man: add man page for systemd-loginctlLennart Poettering
2011-07-12unit: introduce ConditionFileIsExecutable= and use it where we check for a ↵Lennart Poettering
binary we'll spawn
2011-07-12tmpfiles: allow creation of named pipes with tmpfilesLennart Poettering
2011-07-11man: un-reverse IgnoreOnSnapshot descriptionZbigniew Jędrzejewski-Szmek
I think that snapshots & devices are actually _not_ captured in snapshots.
2011-07-07systemctl: hide all information on --kill-mode= since it is mostly uselessLennart Poettering
2011-07-07path,unit: support globbing in conditions and path unitsLennart Poettering
2011-07-01nspawn: spawn shell under specified --userMichal Vyskocil
Add -u/--user option, which changes the effective and real user and group id to the new value. The user must exists in the chroot, otherwise it will fail. Both username and user id are accepted. The user home is created as well. It also setup HOME, USER, LOGNAME and SHELL variables .
2011-07-01unit: add three new specifiers to use in unit filesLennart Poettering
2011-06-30exec: add ControlGroupModify= switch to allow changing access mode to cgroups fsLennart Poettering
2011-06-29man: update pam_systemd page to document new behaviourLennart Poettering
2011-06-29logind: add man page for configuration fileLennart Poettering
2011-06-27systemctl: add support for --root for systemctl enable/disable/is-enabledFrederic Crozat
Add --root=<root> for enable/disable/is-enabled systemctl commands. To be used for easily enable / disable systemd services for a chroot, without running systemctl inside chroot.
2011-06-21service: check whether sysv scripts where changedLennart Poettering
2011-06-20systemctl: Add SYSTEMD_PAGER for setting the pager to use in systemctlVille Skyttä
2011-06-20man: Documentation spelling fixesVille Skyttä
2011-06-15pam-module: add debug= parameterMichal Schmidt
It is customary that pam modules do not log debugging information by default. Usually they offer a 'debug' option. Add a boolean debug= option to pam_systemd.so. This will solve bug https://bugzilla.redhat.com/show_bug.cgi?id=705427 Commit 53d5582fa006b0eb528f5dc3f4ba978abd8ac5a3 was not sufficient to fix it, because in Fedora rsyslog is configured to write even LOG_DEBUG messages to /var/log/secure by default.