You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
From 2cfba1646374d8d10431d0bd647b734ad4f59a49 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) |
|
|
|
Cherry-picked from: c5b43a4 |
|
Resolves: #1222517 |
|
--- |
|
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 a7217a199..7528e0649 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'
|
|
|