summaryrefslogtreecommitdiff
path: root/man/daemon.xml
AgeCommit message (Collapse)AuthorFilesLines
2015-06-18man: revert dynamic paths for split-usr setupsTom Gundersen1-4/+1
This did not really work out as we had hoped. Trying to do this upstream introduced several problems that probably makes it better suited as a downstream patch after all. At any rate, it is not releaseable in the current state, so we at least need to revert this before the release. * by adjusting the path to binaries, but not do the same thing to the search path we end up with inconsistent man-pages. Adjusting the search path too would be quite messy, and it is not at all obvious that this is worth the effort, but at any rate it would have to be done before we could ship this. * this means that distributed man-pages does not make sense as they depend on config options, and for better or worse we are still distributing man pages, so that is something that definitely needs sorting out before we could ship with this patch. * we have long held that split-usr is only minimally supported in order to boot, and something we hope will eventually go away. So before we start adding even more magic/effort in order to make this work nicely, we should probably question if it makes sense at all.
2015-05-28man: generate configured paths in manpagesFilipe Brandenburger1-1/+4
In particular, use /lib/systemd instead of /usr/lib/systemd in distributions like Debian which still have not adopted a /usr merge setup. Use XML entities from man/custom-entities.ent to replace configured paths while doing XSLT processing of the original XML files. There was precedent of some files (such as systemd.generator.xml) which were already using this approach. This addresses most of the (manual) fixes from this patch: http://anonscm.debian.org/cgit/pkg-systemd/systemd.git/tree/debian/patches/Fix-paths-in-man-pages.patch?h=experimental-220 The idea of using generic XML entities was presented here: http://lists.freedesktop.org/archives/systemd-devel/2015-May/032240.html This patch solves almost all the issues, with the exception of: - Path to /bin/mount and /bin/umount. - Generic statements about preference of /lib over /etc. These will be handled separately by follow up patches. Tested: - With default configure settings, ran "make install" to two separate directories and compared the output to confirm they matched exactly. - Used a set of configure flags including $CONFFLAGS from Debian: http://anonscm.debian.org/cgit/pkg-systemd/systemd.git/tree/debian/rules Installed the tree and confirmed the paths use /lib/systemd instead of /usr/lib/systemd and that no other unexpected differences exist. - Confirmed that `make distcheck` still passes.
2015-02-03Reindent man pages to 2chZbigniew Jędrzejewski-Szmek1-894/+702
2014-11-01Use log "level" instead of "priority"Zbigniew Jędrzejewski-Szmek1-3/+3
The term "priority" is misleading because higher levels have lower priority. "Level" is clearer and shorter. This commit touches only the textual descriptions, not function and variable names themselves. "Priority" is used in various command-line switches and protocol constants, so completly getting rid of "priority" is hard. I also left "priority" in various places where the clarity suffered when it was removed.
2014-10-03man: use more markup in daemon(7)Zbigniew Jędrzejewski-Szmek1-4/+5
2014-07-07man: add a mapping for external manpagesZbigniew Jędrzejewski-Szmek1-3/+3
It is annoying when we have dead links on fd.o. Add project='man-pages|die-net|archlinux' to <citerefentry>-ies. In generated html, add external links to http://man7.org/linux/man-pages/man, http://linux.die.net/man/, https://www.archlinux.org/. By default, pages in sections 2 and 4 go to man7, since Michael Kerrisk is the autorative source on kernel related stuff. The rest of links goes to linux.die.net, because they have the manpages. Except for the pacman stuff, since it seems to be only available from archlinux.org. Poor gummiboot gets no link, because gummitboot(8) ain't to be found on the net. According to common wisdom, that would mean that it does not exist. But I have seen Kay using it, so I know it does, and deserves to be found. Can somebody be nice and put it up somewhere?
2014-06-30man: daemon - typo fixThomas Hindoe Paaboel Andersen1-1/+1
2014-06-30man: drop references to manual StandardError=syslog from daemon(7), we do ↵Lennart Poettering1-23/+15
this implicitly since ages
2014-06-30man: add a minimized, modernized description of the file system hierarchy ↵Lennart Poettering1-1/+10
systemd suggests
2014-05-22man: update URL refernce in daemon(7)Lennart Poettering1-1/+1
http://lists.freedesktop.org/archives/systemd-devel/2014-May/019410.html
2014-05-22man: drop reference to file locking for PID file creation from daemon(7)Lennart Poettering1-3/+1
File locking is usually a bad idea, don't suggest using it.
2014-05-07doc: write out stdin/stdout file descriptorsJan Engelhardt1-2/+2
"When refering to code, STDOUT/STDOUT/STDERR are replaced with stdin/stdout/stderr, and in other places they are replaced with normal phrases like standard output, etc." Addendum to commit v209~127.
2014-03-06man: update link to LSBZbigniew Jędrzejewski-Szmek1-2/+2
https://bugzilla.redhat.com/show_bug.cgi?id=1073402
2014-02-25Replace /var/run with /run in remaining placesZbigniew Jędrzejewski-Szmek1-1/+1
/run was already used almost everywhere, fix the remaining places for consistency.
2014-02-17doc: quote consistently in autoconf codeJan Engelhardt1-3/+3
AS_HELP_STRING has been observed to expand such that the surround function complains; play it safe and consistenly quote the example code throughout.
2014-02-14man: replace STDOUT with standard output, etc.Zbigniew Jędrzejewski-Szmek1-10/+11
Actually 'STDOUT' is something that doesn't appear anywhere: in the stdlib we have 'stdin', and there's only the constant STDOUT_FILENO, so there's no reason to use capitals. When refering to code, STDOUT/STDOUT/STDERR are replaced with stdin/stdout/stderr, and in other places they are replaced with normal phrases like standard output, etc.
2014-02-14man: always place <programlisting> and </programlisting> in a line with ↵Lennart Poettering1-2/+1
actual sources, so that we don't get spurious newlines in the man page output
2013-12-27man: include autoconf snippet in daemon(7)Michał Górny1-6/+14
https://bugs.freedesktop.org/show_bug.cgi?id=40446
2013-12-25man: grammar and wording improvementsJan Engelhardt1-1/+1
This is a recurring submission and includes corrections to: - missing words, preposition choice. - change of /lib to /usr/lib, because that is what most distros are using as the system-wide location for systemd/udev files.
2013-07-03man: more grammar improvementsJan Engelhardt1-65/+65
- place commas - expand contractions (this is written prose :) - add some missing words
2013-07-02man: add more formatting markupZbigniew Jędrzejewski-Szmek1-3/+3
2013-06-26man: use <constant> for various constants which look ugly with quotesZbigniew Jędrzejewski-Szmek1-2/+2
2013-06-26man: always supply quotes around literalsZbigniew Jędrzejewski-Szmek1-1/+1
When manpages are displayed on a terminal, <literal>s are indistinguishable from surrounding text. Add quotes everywhere, remove duplicate quotes, and tweak a few lists for consistent formatting. https://bugzilla.redhat.com/show_bug.cgi?id=874631
2013-05-18Standardize on 'file system' and 'namespace' in man pages.David Strauss1-1/+1
This change is based on existing usage in systemd and online. 'File-system' may make sense in adjectival form, but man pages seem to prefer 'file system' even in those situations.
2012-11-30man: fix some spelling mistakesRamkumar Ramachandra1-1/+1
2012-10-16Reword sentences that contain psuedo-English "resp."Andrew Eikum1-1/+1
As you likely know, Arch Linux is in the process of moving to systemd. So I was reading through the various systemd docs and quickly became baffled by this new abbreviation "resp.", which I've never seen before in my English-mother-tongue life. Some quick Googling turned up a reference: <http://www.transblawg.eu/index.php?/archives/870-Resp.-and-other-non-existent-English-wordsNicht-existente-englische-Woerter.html> I guess it's a literal translation of the German "Beziehungsweise", but English doesn't work the same way. The word "respectively" is used exclusively to provide an ordering connection between two lists. E.g. "the prefixes k, M, and G refer to kilo-, mega-, and giga-, respectively." It is also never abbreviated to "resp." So the sentence "Sets the default output resp. error output for all services and sockets" makes no sense to a natural English speaker. This patch removes all instances of "resp." in the man pages and replaces them with sentences which are much more clear and, hopefully, grammatically valid. In almost all instances, it was simply replacing "resp." with "or," which the original author (Lennart?) could probably just do in the future. The only other instances of "resp." are in the src/ subtree, which I don't feel privileged to correct. Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
2012-09-13man: fix a bunch of typos in docsThomas Hindoe Paaboel Andersen1-5/+5
https://bugs.freedesktop.org/show_bug.cgi?id=54501
2012-07-16man: reword man page titlesLennart Poettering1-1/+1
Make sure the man page titles are similar in style and capitalization so that our man page index looks pretty.
2012-07-13man: move header file man pages from section 7 to 3Lennart Poettering1-3/+3
This way we can include documentation about minor macros/inline function within the introducionary man page in a sane way.
2012-06-21man: document the new RPM macros in daemon(7)Lennart Poettering1-34/+35
2012-04-12relicense to LGPLv2.1 (with exceptions)Lennart Poettering1-4/+4
We finally got the OK from all contributors with non-trivial commits to relicense systemd from GPL2+ to LGPL2.1+. Some udev bits continue to be GPL2+ for now, but we are looking into relicensing them too, to allow free copy/paste of all code within systemd. The bits that used to be MIT continue to be MIT. The big benefit of the relicensing is that closed source code may now link against libsystemd-login.so and friends.
2011-08-31man: don't recommend After=syslog.target anymore since we don't support ↵Lennart Poettering1-18/+0
non-socket-activatable syslogs anymore where that was ncessary
2011-08-30stdout-bridge: rename logger to stdout-syslog-bridge to make it more descriptiveLennart Poettering1-1/+1
2011-06-20man: Documentation spelling fixesVille Skyttä1-1/+1
2011-04-23man: Spelling fixesA. Costa1-2/+2
2011-04-16man: runlevel 5 is usually more comprehensive, so use it instead of 3 to ↵Lennart Poettering1-1/+1
detect whether a sysv service is enabled
2011-03-01man: fix chkconfig syntax to use --level 3Lennart Poettering1-1/+1
2011-02-18man: don't do more reloads than necessary in spec filesLennart Poettering1-2/+2
2010-12-16man: daemon - fix misspellingsMiklos Vajna1-2/+2
2010-11-15drop support for MANAGER_SESSION, introduce MANAGER_USER insteadLennart Poettering1-3/+3
2010-10-19man: extend commenting of .spec file snippets a bitLennart Poettering1-6/+9
2010-10-05man: fix suggested autoconf snippetLennart Poettering1-2/+4
2010-09-13man: s/triggerin/triggerun/ for rpm upgradesLennart Poettering1-1/+1
https://bugzilla.redhat.com/show_bug.cgi?id=626966
2010-09-13man: some clarificationsLennart Poettering1-5/+5
2010-08-25man: minor updatesLennart Poettering1-1/+1
2010-08-07man: minor man page fixLennart Poettering1-1/+1
2010-08-06man: minor man page fixLennart Poettering1-1/+1
2010-08-06man: document %triggerin usageLennart Poettering1-0/+27
2010-07-24systemctl: fold systemd-install into systemctlLennart Poettering1-18/+31
2010-07-10man: update daemon man page a littleLennart Poettering1-5/+44