summaryrefslogtreecommitdiff
path: root/man/systemctl.xml
AgeCommit message (Collapse)AuthorFilesLines
2013-01-04systemctl: add is-failedThomas Hindoe Paaboel Andersen1-0/+13
Adds is-failed to join is-active and is-enabled. I grabbed this one from the todo list. Most of the functionality was already there for is-active. I just needed to make check_one_unit take the states to check for as an argument instead of the hardcoded "active" and "reloading". is-failed will return 1 if none of the units given are failed. This is different from is-active which will return 3 if none of the units given are active. It returns 3 with this comment: /* According to LSB: "program is not running" */ As that does not make sense when looking for failed units I simply chose 1 instead.
2012-11-15systemctl: add help for --type/-tZbigniew Jędrzejewski-Szmek1-0/+5
The list of types and load states if lengthy, so a little reminder can be sometimes useful.
2012-10-31man: explain a bit more detailed what happens on suspendLennart Poettering1-3/+15
2012-10-28logind: support for hybrid sleep (i.e. suspend+hibernate at the same time)Lennart Poettering1-0/+5
2012-10-26man: typo fixesThomas Hindoe Paaboel Andersen1-3/+3
https://bugs.freedesktop.org/show_bug.cgi?id=55890 Fixed typos, serial comma, and removed "either" as there were more than two options. Also did an extra rename of "system-shutdown" to "systemd-shutdown" that was forgotten in commit 8bd3b8620c80d0f2383f2fb04315411fc8077ca1
2012-10-19systemctl: remove --follow optionLennart Poettering1-11/+0
Given that "journalctl -u" exists now there's no need to duplicate this functionality in systemctl, so let's drop this, especially given that it always felt a bit awkward to overload "-f" to both --force and --follow, and to have continues output with a status header for this. systemctl status -f avahi-daemon now becomes: journalctl -fu avahi-daemon Which is shorter and a lot less redundant.
2012-09-13man: fix a bunch of typos in docsThomas Hindoe Paaboel Andersen1-3/+3
https://bugs.freedesktop.org/show_bug.cgi?id=54501
2012-07-26systemd: enable/disable instances of templateMichal Sekletar1-14/+19
https://bugzilla.redhat.com/show_bug.cgi?id=752774
2012-07-16Spelling fixes.Ville Skyttä1-3/+3
2012-07-10systemctl: filter shown units by their load stateZbigniew Jędrzejewski-Szmek1-8/+20
E.g. systemctl --all -t masked gives the list of masked units. The -t/--type option is reused. This is possible because unit types and unit load states are called differently, so it is possible to distinguish what the user meant. Using the same option also means that the interface is user for the user: less options to remember.
2012-06-28man: add various links from man pages to appropriate wiki pagesLennart Poettering1-2/+6
2012-06-27man: document preset filesLennart Poettering1-5/+9
2012-06-10man: replace tabs with spacesKay Sievers1-6/+6
2012-06-04systemctl: rename "man" to "help"Kay Sievers1-1/+1
2012-05-31systemctl: introduce "systemctl man" to show man page for unitLennart Poettering1-0/+8
For now this only reads man: URLs, but later on we might want to support info: too. http/https is probably out of focus.
2012-05-29man/systemctl.xml: Add missing space for »stopcommand«Paul Menzel1-1/+1
2012-05-15man: overwrite vs. overrideMichal Schmidt1-1/+1
'overwrite' conveys the idea of the old text being destroyed. 'override' does not. It is more similar to 'overrule'.
2012-05-14systemctl: add switch-root verbLennart Poettering1-0/+27
2012-05-08sleep: implement suspend/hibernate as first class targetsLennart Poettering1-0/+10
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.
2012-04-11polkit: temporarily spawn of a polkit agent in terminals for possibly ↵Lennart Poettering1-5/+7
authenticated operations
2012-04-03systemctl: make -f short for both --follow and --forceLennart Poettering1-0/+1
2012-03-30rename /etc/systemd/systemd-{login,journal}d.conf to {login,journal}d.confKay Sievers1-1/+0
2012-03-26man: don't claim -f was short for --followLennart Poettering1-1/+0
2012-03-26journalctl,loginctl: drop systemd- prefix in binary namesLennart Poettering1-3/+4
Let's make things a bit easier to type, drop the systemd- prefix for journalctl and loginctl, but provide the old names for compat. All systemd binaries are hence now prefixed with "systemd-" with the exception of the three primary user interface binaries: systemctl loginctl journalctl For those three we do provide systemd-xyz names as well, via symlinks: systemd-systemctl → systemctl systemd-loginctl → loginctl systemd-journalctl → journalctl We do this only for the *primary* user tools, in order to avoid unnecessary namespace problems. That means tools like systemd-notify stay the way they are.
2012-03-16man: document journal features of systemctl(1)Lennart Poettering1-8/+49
2012-02-15systemctl: introduce systemctl reboot -ffLennart Poettering1-26/+47
2011-10-11man: document list-unit-filesRan Benita1-0/+7
It's documented in the --help, but not in the manpage.
2011-09-27systemctl: print the legend regardless of stdout type, add --no-legendMichal Schmidt1-0/+8
Print the legend (the column headers and the footer with hints) by default even to non-tty output. People seem to get confused by the difference when they redirect the output. Add a parameter to suppress the printing of the legend. Related-to: https://bugzilla.redhat.com/show_bug.cgi?id=713567
2011-07-25systemctl: hook up new install logicLennart Poettering1-20/+98
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 Poettering1-10/+0
2011-07-13man: add a couple of crosslinksLennart Poettering1-0/+1
2011-07-13man: add man page for systemd-loginctlLennart Poettering1-3/+4
2011-07-07systemctl: hide all information on --kill-mode= since it is mostly uselessLennart Poettering1-19/+0
2011-06-27systemctl: add support for --root for systemctl enable/disable/is-enabledFrederic Crozat1-0/+11
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-20systemctl: Add SYSTEMD_PAGER for setting the pager to use in systemctlVille Skyttä1-0/+16
2011-06-20man: Documentation spelling fixesVille Skyttä1-2/+2
2011-04-05man: fix description of systemctl reload-or-try-restartLennart Poettering1-5/+6
2011-03-29exec: drop process group kill mode since it has little use and confuses the userLennart Poettering1-5/+3
2011-03-16man: fix systemctl try-restart descriptionAndrey Borzenkov1-3/+3
It is no more error when service is not running.
2011-03-12systemctl: support remote and privileged systemctl access via SSH and pkexecLennart Poettering1-0/+21
This adds support for executing systemctl operations remotely or as privileged user while still running systemctl itself unprivileged and locally. This currently requires a D-Bus patch to work properly. https://bugs.freedesktop.org/show_bug.cgi?id=35230
2011-02-16systemctl: introduce --ignore-dependenciesLennart Poettering1-0/+15
2011-02-16systemctl: introduce --failed to show only failed servicesLennart Poettering1-1/+12
2011-01-02systemctl: implement auto-pager a la gitMiklos Vajna1-0/+7
2010-11-30man: systemctl - clarify condrestart, force-reloadRan Benita1-8/+18
2010-11-28man: systemctl - spelling fixesRan Benita1-21/+21
2010-11-15drop support for MANAGER_SESSION, introduce MANAGER_USER insteadLennart Poettering1-12/+12
2010-10-26systemctl: automatically spawn temporary password agent when we might need oneLennart Poettering1-0/+23
2010-10-22man: numerous updates to document updated systemctl behaviourLennart Poettering1-35/+78
2010-10-22man: document systemctl --forceLennart Poettering1-0/+14