46 lines
1.7 KiB
Diff
46 lines
1.7 KiB
Diff
|
From 8a4bf5dd52fe70734d566df3315927e41d27ac0e Mon Sep 17 00:00:00 2001
|
||
|
From: Ronny Chevalier <chevalier.ronny@gmail.com>
|
||
|
Date: Tue, 7 Apr 2015 20:14:28 +0200
|
||
|
Subject: [PATCH] zsh-completion: update hostnamectl
|
||
|
|
||
|
(cherry picked from commit d67b1f525f488e5dfc076972cccf2a6411257fb8)
|
||
|
---
|
||
|
shell-completion/zsh/_hostnamectl | 12 +++++++++++-
|
||
|
1 file changed, 11 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/shell-completion/zsh/_hostnamectl b/shell-completion/zsh/_hostnamectl
|
||
|
index a7217a1999..7528e0649d 100644
|
||
|
--- a/shell-completion/zsh/_hostnamectl
|
||
|
+++ b/shell-completion/zsh/_hostnamectl
|
||
|
@@ -33,6 +33,14 @@ _hostnamectl_set-deployment() {
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
+_hostnamectl_set-location() {
|
||
|
+ if (( CURRENT <= 3 )); then
|
||
|
+ _message "new location"
|
||
|
+ else
|
||
|
+ _message "no more options"
|
||
|
+ fi
|
||
|
+}
|
||
|
+
|
||
|
_hostnamectl_command() {
|
||
|
local -a _hostnamectl_cmds
|
||
|
_hostnamectl_cmds=(
|
||
|
@@ -40,7 +48,8 @@ _hostnamectl_command() {
|
||
|
"set-hostname:Set system hostname"
|
||
|
"set-icon-name:Set icon name for host"
|
||
|
"set-chassis:Set chassis type for host"
|
||
|
- "set-deployment:Set deployment environment"
|
||
|
+ "set-deployment:Set deployment environment for host"
|
||
|
+ "set-location:Set location for host"
|
||
|
)
|
||
|
if (( CURRENT == 1 )); then
|
||
|
_describe -t commands 'hostnamectl commands' _hostnamectl_cmds || compadd "$@"
|
||
|
@@ -67,4 +76,5 @@ _arguments -s \
|
||
|
'--pretty[Only set pretty hostname]' \
|
||
|
'--no-ask-password[Do not prompt for password]' \
|
||
|
{-H+,--host=}'[Operate on remote host]:userathost:_sd_hosts_or_user_at_host' \
|
||
|
+ {-M+,--machine=}'[Operate on local container]:machines:_sd_machines' \
|
||
|
'*::hostnamectl commands:_hostnamectl_command'
|