summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/systemd-bash-completion.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemd-bash-completion.sh b/src/systemd-bash-completion.sh
index eab290e9c4..62601de90a 100644
--- a/src/systemd-bash-completion.sh
+++ b/src/systemd-bash-completion.sh
@@ -201,7 +201,7 @@ __get_all_sessions () { systemd-loginctl list-sessions | { while read a b; do ec
__get_all_users () { systemd-loginctl list-users | { while read a b; do echo "$b"; done; } ; }
__get_all_seats () { systemd-loginctl list-seats | { while read a b; do echo "$a"; done; } ; }
-_systemd_loginctl () {
+_loginctl () {
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local verb comps
@@ -278,4 +278,4 @@ _systemd_loginctl () {
COMPREPLY=( $(compgen -W "$comps" -- "$cur") )
return 0
}
-complete -F _systemd_loginctl systemd-loginctl
+complete -F _loginctl loginctl