summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* TODO: python stuff and freeze and standbyZbigniew Jędrzejewski-Szmek2013-03-071-1/+1
|
* bootchart: document -C, --cmdline parameterHarald Hoyer2013-03-071-0/+8
|
* man: Unify title for configuration filesJan Janssen2013-03-073-3/+3
|
* man: Fix id attributesJan Janssen2013-03-074-4/+4
|
* man/kernel-install.xml: fix paths to reflect actual behaviourHarald Hoyer2013-03-071-2/+2
|
* man: fix compilation of exampleZbigniew Jędrzejewski-Szmek2013-03-071-4/+4
|
* journald: introduce new "systemd-journal" group and make it own the journal ↵Lennart Poettering2013-03-051-1/+34
| | | | | | | | | | | | | | | | | | | | | files Previously all journal files were owned by "adm". In order to allow specific users to read the journal files without granting it access to the full "adm" powers, introduce a new specific group for this. "systemd-journal" has to be created by the packaging scripts manually at installation time. It's a good idea to assign a static UID/GID to this group, since /var/log/journal might be shared across machines via NFS. This commit also grants read access to the journal files by default to members of the "wheel" and "adm" groups via file system ACLs, since these "almost-root" groups should be able to see what's going on on the system. These ACLs are created by "make install". Packagers probably need to duplicate this logic in their postinst scripts. This also adds documentation how to grant access to the journal to additional users or groups via fs ACLs.
* build-sys: build and install systemd-coredumpctl conditionallyMichael Biebl2013-03-041-1/+1
| | | | | If coredump support is disabled via --disable-coredump, do not build and install the systemd-coredumpctl binary and man page.
* build-sys: do not install pam_systemd(8) without PAMZbigniew Jędrzejewski-Szmek2013-03-041-1/+1
|
* build-sys: do not install logind manpages when disabledZbigniew Jędrzejewski-Szmek2013-03-042-2/+2
| | | | The condition was wrong: HAVE_PAM -> ENABLE_LOGIND.
* core/path: catch errors when adding watchesZbigniew Jędrzejewski-Szmek2013-03-031-8/+15
| | | | | | | | | Errors because of oom conditions or descriptor exhaustion should not be ignored. We probably cannot recover from those conditions. Current behaviour wrt. insufficient permissions is described in the man page. It might make sense in case of user sessions, so I left it as is.
* journalctl: add --user-unit= switchDaniel Wallace2013-03-011-0/+11
| | | | | Add --user-unit= to make it possible to query for user logs by the name of the service.
* journalctl: add --reverse option to show the newest lines firstLukas Nykryn2013-03-011-0/+8
|
* Merge branch 'python-systemd-reader'Zbigniew Jędrzejewski-Szmek2013-02-281-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * python-systemd-reader: python-systemd: rename Journal to Reader build-sys: upload python documentation to freedesktop.org systemd-python: add Journal class for reading journal python: build html docs using sphinx journalct: also print Python code in --new-id python: utilize uuid.UUID in logging python: add systemd.id128 module ... and 34 other commits In short: python module systemd.id128 is added, and existing systemd.journal gains a new class systemd.journal.Reader, which can be used to iterate over journal entries. Documentation is provided, and accessible under e.g. pydoc3 systemd.journal.Reader or firefox http://www.freedesktop.org/software/systemd/man/python-systemd/
| * python: build html docs using sphinxZbigniew Jędrzejewski-Szmek2013-02-221-0/+1
| | | | | | | | | | | | | | Build instructions: make make DESTIDIR=/tmp/... install make DESTIDIR=/tmp/... sphinx-html sphinx-man sphinx-epub ...
* | man: clarify systemctl --property= documentation a bitLennart Poettering2013-02-281-5/+6
| |
* | man: fix docbook in systemd-activate(8)Zbigniew Jędrzejewski-Szmek2013-02-271-4/+4
| |
* | man: document systemd-nspawn behaviour with -bZbigniew Jędrzejewski-Szmek2013-02-271-6/+22
| | | | | | | | Cf. cb96a2c69 and 1ddf879a.
* | systemd-activate: add a socket-activation test toolZbigniew Jędrzejewski-Szmek2013-02-271-0/+171
| |
* | man: document the new systemctl cgroup commandsLennart Poettering2013-02-271-3/+104
| |
* | man: clarify how to configure default control group hierarchies for services ↵Lennart Poettering2013-02-272-14/+30
| | | | | | | | and sessions
* | nspawn: add --bind= and --bind-ro= to bind mount host paths into the containerLennart Poettering2013-02-251-0/+20
| |
* | kernel-install(8): add documentation about the configuration files usedHarald Hoyer2013-02-251-0/+28
| |
* | kernel-install: add kernel-install toolHarald Hoyer2013-02-251-0/+138
| |
* | Revert "nspawn: catch config mistake of specifying -b and args"Michal Schmidt2013-02-251-3/+1
| | | | | | | | | | | | | | | | | | This reverts commit cb96a2c69a312fb089fef4501650f4fc40a1420b. It is not a mistake to pass args when -b is specified. They will simply be passed on to the container's init. The manpage needs fixing, that's true.
* | nspawn: catch config mistake of specifying -b and argsZbigniew Jędrzejewski-Szmek2013-02-241-1/+3
|/
* systemctl: make shutdown operations use irreversible jobsMichal Schmidt2013-02-221-7/+7
| | | | | | | | | | | | Occasionally people report problem with reboot/poweroff operations hanging in the middle. One known cause is when a new transaction to start a unit is enqueued while the shutdown is going on. The start of the unit conflicts with the shutdown jobs, so they get cancelled. The failure case can be quite unpleasant, becase getty and sshd may already be stopped. Fix it by using irreversible jobs for shutdown (reboot/poweroff/...) actions. This applies to commands like "reboot", "telinit 6", "systemctl reboot". Should someone desire to use reversible jobs, they can say "systemctl start reboot.target".`
* core, systemctl: add support for irreversible jobsMichal Schmidt2013-02-221-0/+11
| | | | | | | Add a new job mode: replace-irreversibly. Jobs enqueued using this mode cannot be implicitly canceled by later enqueued conflicting jobs. They can however still be canceled with an explicit "systemctl cancel" call.
* systemctl: make "systemctl default" use "isolate" job modeMichal Schmidt2013-02-221-1/+1
| | | | | | "systemctl default" should behave identically to "telinit N" (where N is the corresponding runlevel target number), therefore it should use isolate job mode too.
* man: be even more clear about ExecStart's first argument.Max F. Albrecht2013-02-201-4/+5
|
* man: document %%Zbigniew Jędrzejewski-Szmek2013-02-201-0/+5
|
* man: Add reason for disk model info not workingWilliam Giokas2013-02-171-0/+4
| | | | | | In systemd-bootchart, the disk model information will not be found unless the root device is specified using `root=/dev/sdxY` on the kernel line. Just add a note as to why this doesn't happen.
* systemctl: allow comma sepearted property listsZbigniew Jędrzejewski-Szmek2013-02-161-3/+2
|
* man: prettify systemctl(1)Zbigniew Jędrzejewski-Szmek2013-02-161-1275/+1143
| | | | | | | - reindent with two spaces, otherwise everything is squeezed near the right margin, - mark only optional arguments as optional, - some typos, etc.
* bootchart: rename --filter to --no-filterZbigniew Jędrzejewski-Szmek2013-02-161-1/+1
| | | | | | Turning off filtering with --filter is just too confusing. Config option "Filter" doesn't have to be changed, here "Filter=yes" already meant to filter.
* man: move bootchart README to manpage, docbooksifyZbigniew Jędrzejewski-Szmek2013-02-161-61/+101
|
* systemctl: allow status with no unitsZbigniew Jędrzejewski-Szmek2013-02-161-10/+17
| | | | | | | This makes 'status' behave like 'list-units': systemctl status -> status of all units systemctl -t error status -> status of error units systemctl -t mount status -> etc.
* man: Update bootchart.conf(5)William Giokas2013-02-141-15/+15
| | | | | Recent changes in config options makes almost eveny variable in the man page obsolete.
* man: Add even more to the bootchart man pageWilliam Giokas2013-02-141-17/+83
| | | | | | | | | | Essentially transfer the 'README' file in src/bootchart to the man page for easier reading by users. Moved the 'History' section to the bottom, before the 'See Also' section. man/systemd-bootchart.xml | 100 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 83 insertions(+), 17 deletions(-)
* nspawn: print PID and show how to enter the namespaceZbigniew Jędrzejewski-Szmek2013-02-141-3/+27
| | | | | | | | | | | systemd-nspawn will now print the PID of the child. An example showing how to enter the container is added to the man page. Support for nsenter without an explicit command was added in https://github.com/karelzak/util-linux/commit/5758069 (post v2.22.2). So this example requires both a new kernel and the latest util-linux.
* man: use <replaceable> in various placesZbigniew Jędrzejewski-Szmek2013-02-1318-30/+26
|
* man: bootchart: change /var/log to /run/logWilliam Giokas2013-02-132-2/+2
| | | | | | As of [1], bootchart stores files in /run/log, not /var/log, by default. [1] f2f85884caac671da84256acb44148df9a4dca70
* Move systemctl dot to systemd-analyze dotSimon Peeters2013-02-132-44/+40
|
* man: rename systemd.conf to systemd-system.confZbigniew Jędrzejewski-Szmek2013-02-136-13/+14
| | | | | | | Alias as systemd-user.conf is also provided. This should help users running systemd in session mode. https://bugzilla.redhat.com/show_bug.cgi?id=690868
* man: Make options consistentWilliam Giokas2013-02-139-38/+38
| | | | | | | Option listings seemed to be pretty much random, some were short opt, long opt, others were long opt, short opt. This just makes every option with a short and long opt that I could find in the order short opt, long opt, for formatting's sake.
* man: Write man page for systemd-bootchart(1)William Giokas2013-02-131-3/+89
| | | | Mostly coppied from bootchart.conf(5)
* man: typo fixLennart Poettering2013-02-131-1/+1
|
* binfmt,tmpfiles,modules-load,sysctl: rework the various early-boot services ↵Lennart Poettering2013-02-111-1/+1
| | | | | | | | | | | | | | | | | | | that work on .d/ directories This unifies much of the logic behind them: - All four will now ofllow the rule that the earlier file and earlier assignment in the .d/ directories wins. Before, sysctl was the only outlier, where the later setting always won. - All four now support getopt() and --help on the command line. - All four can now handle specification of configuration file names on the command line to apply. The tools will automatically find them, and apply them. Previously only tmpfiles could do that. This is useful for %post scripts in RPMs and suchlike. - This fixes various error path issues in conf_files_list()
* man: typo fix in systemd.socketMichael Biebl2013-02-091-1/+1
|
* man: fix prototype of sd_get_uids()Lennart Poettering2013-02-081-1/+1
|