about summary refs log tree commit diff
path: root/Completion/Unix/Command/_getent
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_getent')
-rw-r--r--Completion/Unix/Command/_getent7
1 files changed, 7 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_getent b/Completion/Unix/Command/_getent
index 0fb9a0af4..b96852db3 100644
--- a/Completion/Unix/Command/_getent
+++ b/Completion/Unix/Command/_getent
@@ -50,6 +50,13 @@ case $state in
       aliases|passwd|shadow|group)
         _wanted keys expl key compadd ${keys%%:*} && ret=0
       ;;
+      utmpx)
+	if (( CURRENT > 3 )); then
+	  _files && ret=0
+	else
+	  _wanted keys expl key compadd active lastlogin log && ret=0
+	fi
+      ;;
       *) _message -e keys key;;
     esac
   ;;