[systemd-devel] [PATCH] zsh completion: add _kernel-install

2013-08-02 Thread Daniel Wallace
--- Makefile.am | 1 + shell-completion/zsh/_kernel-install | 26 ++ 2 files changed, 27 insertions(+) create mode 100644 shell-completion/zsh/_kernel-install diff --git a/Makefile.am b/Makefile.am index 8e64aaa..1b55c66 100644 --- a/Makefile.am

Re: [systemd-devel] macros in systemd unit files question

2013-08-01 Thread Daniel Wallace
On Thu, Aug 1, 2013 at 9:41 AM, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and lux-integ at 01/08/13 15:25 did gyre and gimble: On Thursday 01 August 2013 12:58:46 Tom Gundersen wrote: 'm not following. Do you mean that systemd is already doing what you need, not sure

Re: [systemd-devel] [PATCH] shell-completion: fix zsh completion installation

2013-07-27 Thread Daniel Wallace
list systemd-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/systemd-devel That version is the old systemd completion that is still in the last zsh release, from before I moved it to the systemd repository and added a most of the other commands and options -- Daniel

[systemd-devel] [PATCHv2] Allow for the use of @ in remote host calls

2013-06-09 Thread Daniel Wallace
Without this you have to use %40 with the -H flag because dbus doesn't like the @ sign being unescaped. --- src/hostname/hostnamectl.c | 5 +++-- src/locale/localectl.c | 5 +++-- src/login/loginctl.c | 5 +++-- src/shared/dbus-common.c | 4 ++-- src/shared/util.c | 10

[systemd-devel] [PATCH] Allow for the use of @ in remote host calls

2013-06-08 Thread Daniel Wallace
Without this you have to use %40 with the -H flag because dbus doesn't like the @ sign being unescaped. --- src/hostname/hostnamectl.c | 12 ++-- src/locale/localectl.c | 12 ++-- src/login/loginctl.c | 12 ++-- src/shared/dbus-common.c | 4 ++--

[systemd-devel] [PATCH] zsh_completion: complete only pids for systemd-coredumpctl

2013-05-05 Thread Daniel Wallace
Instead of completing the whole line, which doesn't work, only complete the pid, but still show the whole line so the user can see which command was which. Users can also let the parameter expansion sort the completion by date instead of by pid, by setting zstyle

[systemd-devel] [PATCH] zsh_completion: fix udevadm monitor flags

2013-04-30 Thread Daniel Wallace
The brackets in the _arguments description of udevadm monitor need to be escaped. --- shell-completion/systemd-zsh-completion.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-completion/systemd-zsh-completion.zsh b/shell-completion/systemd-zsh-completion.zsh index

[systemd-devel] [PATCH] zsh-completion: journalctl query by binary and device

2013-03-05 Thread Daniel Wallace
implement 1883552c3d8 from bash completion in zsh-completion --- shell-completion/systemd-zsh-completion.zsh | 11 +++ 1 file changed, 11 insertions(+) diff --git a/shell-completion/systemd-zsh-completion.zsh b/shell-completion/systemd-zsh-completion.zsh index 46e29b2..77b26f6 100644

[systemd-devel] [PATCH] query for user unit information in the journal

2013-02-21 Thread Daniel Wallace
Add --user-unit= to make it possible to query for user logs by the name of the service. --- man/journalctl.xml | 11 +++ shell-completion/systemd-bash-completion.sh | 5 - shell-completion/systemd-zsh-completion.zsh | 1 + src/journal/journalctl.c

[systemd-devel] [PATCH] add %U for uids in units

2012-12-06 Thread Daniel Wallace
--- man/systemd.unit.xml | 5 + src/core/unit-printf.c | 17 +++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index 35644d3..bf91b4e 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -264,6 +264,11

[systemd-devel] [PATCH] fix --full for journalctl zsh completion

2012-11-23 Thread Daniel Wallace
--- shell-completion/systemd-zsh-completion.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-completion/systemd-zsh-completion.zsh b/shell-completion/systemd-zsh-completion.zsh index 7799bf6..a58f4ae 100644 --- a/shell-completion/systemd-zsh-completion.zsh +++

Re: [systemd-devel] [PATCH] Add zsh completion

2012-10-26 Thread Daniel Wallace
On Fri, Oct 26, 2012 at 08:41:50AM -0400, Dave Reisner wrote: On Fri, Oct 26, 2012 at 05:58:41AM -0400, Daniel Wallace wrote: From: Daniel Wallace daniel.wall...@gatech.edu I updated the zsh completion from zsh, and added completion for all the other *ctl commands --- Makefile.am