20ba8107a598688e94b2927546718bc80f6514f1 |
|
07-Sep-2015 |
Evgeny Vereshchagin <evvers@ya.ru> |
shell-completion: update systemd-analyze bash-completion
* Change --no-man to --man (see dad29df)
* --{from,to}-pattern require arg |
b4f91f2ba354c16dc23111cc231010c975c717a2 |
|
29-Jan-2015 |
Carlos Morata Castillo <cmc809@inlumine.ual.es> |
Updates in bash autocompletions
Hi,
I did ./check-undocumented.sh -b (my script just submitted) and checked
the results.
Cheers. |
2c12a402cb1e8277c271ced8dc9c06d20b8f6017 |
|
22-Jul-2014 |
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
shell-completion: systemd-analyze verify, systemctl link
Some zsh completion helpers were not installed, so completion
was broken.
Add systemd-analyze verify. Make systemctl link complete only
unit names. |
64ae7f1864d54f38d62e258322a7ea9756c7284b |
|
03-Mar-2014 |
Thomas Hindoe Paaboel Andersen <phomes@gmail.com> |
update bash completion for systemd-analyze |
3ce09b7da2eb8b888066468663b2b5c81a05a03c |
|
06-Feb-2014 |
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
bash-completion: fix completion of complete verbs
When doing 'command verb<TAB>', the arguments for verb would be
proposed, but it is too early. We should complete verb first.
https://bugs.freedesktop.org/show_bug.cgi?id=74596 |
86cb0691b71873c6fe30a103dc98153e2d9ab507 |
|
06-Dec-2013 |
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
shell-completion: busctl |
299c397c127cda34facbe7d089f944a708ec95e9 |
|
22-Oct-2013 |
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
shell-completion: dump has moved to systemd-analyze
Rename NO_OPTION to STANDALONE for consistency with other files. |
fe05567c31cb88593a09ce5d8961d8b20627feb1 |
|
28-Aug-2013 |
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
shell-completions: systemd-analyze set-log-level |
a72d698d0d9ff9c158155b44cdc77376df31a317 |
|
30-Jul-2013 |
Dave Reisner <dreisner@archlinux.org> |
bash-completion: use a better definition of __contains_word
- scope the iterator var
- use the correct, quoted, non-expansion prone positional parameter
notation
- prevent expansion on RHS of comparison
- remove unneeded explicit returns.
This really should be defined only once... |
bb150966c0687d2fa94da0a36dabba90c1a84b8b |
|
26-Apr-2013 |
Harald Hoyer <harald@redhat.com> |
systemd-analyse: add "critical-chain" command
"critical-chain" prints a tree of the critical chain of units
$ ./systemd-analyze critical-chain
graphical.target @1.226s
└─multi-user.target @1.226s
└─nfs-lock.service @961ms +265ms
└─rpcbind.service @958ms +1ms
└─network.target @957ms
└─NetworkManager.service @434ms +522ms
└─basic.target @428ms
└─sockets.target @428ms
└─dbus.socket @428ms
└─sysinit.target @427ms
└─systemd-tmpfiles-setup.service @411ms +15ms
└─local-fs.target @410ms
└─boot-efi.automount @410ms
└─boot.mount @397ms +9ms
└─local-fs-pre.target @192ms
└─systemd-udevd.service @187ms +5ms
└─systemd-udevd-control.socket @140ms
└─-.mount
With the "--fuzz=<ms>" parameter one can display more units around
the critical units.
$ ./systemd-analyze --fuzz=10ms critical-chain
└─multi-user.target @1.226s
└─nfs-lock.service @961ms +265ms
├─rpcbind.service @958ms +1ms
│ └─network.target @957ms
│ └─NetworkManager.service @434ms +522ms
│ ├─basic.target @428ms
│ │ ├─sockets.target @428ms
│ │ │ ├─dbus.socket @428ms
│ │ │ │ └─sysinit.target @427ms
│ │ │ │ ├─systemd-tmpfiles-setup.service @411ms +15ms
│ │ │ │ │ └─local-fs.target @410ms
│ │ │ │ │ └─boot-efi.automount @410ms
│ │ │ │ │ └─boot.mount @397ms +9ms
│ │ │ │ │ └─local-fs-pre.target @192ms
│ │ │ │ │ └─systemd-udevd.service @187ms +5ms
│ │ │ │ │ ├─systemd-udevd-control.socket @140ms
│ │ │ │ │ │ └─-.mount
│ │ │ │ │ └─systemd-udevd-kernel.socket @140ms
│ │ │ │ └─swap.target @421ms
│ │ │ │ └─dev-disk-by\x2duuid-....swap @414ms +6ms
│ │ │ │ └─systemd-journald.socket
│ │ │ ├─rpcbind.socket @428ms
│ │ │ └─cups.socket @428ms
│ │ ├─paths.target @428ms
│ │ │ └─cups.path @428ms
│ │ ├─timers.target @427ms
│ │ │ └─systemd-tmpfiles-clean.timer @427ms
│ │ └─sysinit.target @427ms
│ │ └─...
│ └─dbus.socket @428ms
│ └─...
└─network.target @957ms
└─... |
83cb95b530ca5ae17bd9249774940840a4bbb667 |
|
24-Apr-2013 |
Harald Hoyer <harald@redhat.com> |
add bash completion for systemd-analyze |