]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
zsh completion: update busctl 968/head
authorNicolas Cornu <nicolac76@yahoo.fr>
Sat, 15 Aug 2015 11:58:05 +0000 (13:58 +0200)
committerNicolas Cornu <nicolac76@yahoo.fr>
Sat, 15 Aug 2015 11:58:05 +0000 (13:58 +0200)
shell-completion/zsh/_busctl

index fb1841341ea0ccf2eab59fcc2701ede32fef3533..ef790e558fbc063ec5014cd178497403a7dd7b71 100644 (file)
     local -a _busctl_cmds
     _busctl_cmds=(
         "list:List bus names"
+        "status:Show bus service, process or bus owner credentials"
         "monitor:Show bus traffic"
+        "capture:Capture bus traffix as pcap"
+        "tree:Show object tree of service"
+        "introspect:Introspect object"
+        "call:Call a method"
+        "get-property:Get property value"
+        "set-property:Set property value"
     )
     if (( CURRENT == 1 )); then
         _describe -t commands 'busctl command' _busctl_cmds || compadd "$@"
@@ -54,4 +61,12 @@ _arguments \
     '--acquired[Only show acquired names]' \
     '--activatable[Only show activatable names]' \
     '--match=[Only show matching messages]:match' \
+    '--list[Do not show tree, but simple object path list]' \
+    '--quiet[Do not show method call reply]'\
+    '--verbose[Show result values in long format]' \
+    '--expect-reply=[Expect a method call reply]:boolean:(1 0)' \
+    '--auto-start=[Auto-start destination service]:boolean:(1 0)' \
+    '--allow-interactive-authorization=[Allow interactive authorization for operation]:boolean:(1 0)' \
+    '--timeout=[Maximum time to wait for method call completion]:timeout (seconds)' \
+    '--augment-creds=[Extend credential data with data read from /proc/$PID]:boolean:(1 0)' \
     '*::busctl command:_busctl_command'