chiark / gitweb /
shell-completion: use -a to see "empty" properties
[elogind.git] / shell-completion / bash / systemctl
index 3bdf4dc956bdf790418a8cd7653929b652c9fc2b..3e51f34cbaefcfdc0455467c2a2ddbd89a813363 100644 (file)
@@ -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"