summaryrefslogtreecommitdiff
path: root/shell-completion/bash/systemctl
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-17 10:52:46 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-17 10:53:18 -0400
commit90cf049bfe9a7dcb20a1bd0d12e8b2194dbcd357 (patch)
treef4f5aebbeb3e0b2d47fc42787ba7078b77fe2480 /shell-completion/bash/systemctl
parent4a449ed73d2c1cfb91a1c773b70231b3457b3046 (diff)
shell-completion: use -a to see "empty" properties
Diffstat (limited to 'shell-completion/bash/systemctl')
-rw-r--r--shell-completion/bash/systemctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl
index 3bdf4dc95..3e51f34cb 100644
--- a/shell-completion/bash/systemctl
+++ b/shell-completion/bash/systemctl
@@ -24,7 +24,7 @@ __systemctl() {
__systemd_properties() {
local mode=$1
- { __systemctl $mode show;
+ { __systemctl -a $mode show;
systemd --dump-configuration-items; } |
while IFS='=' read -r key value; do
[[ $value ]] && echo "$key"