summaryrefslogtreecommitdiffstats
path: root/shell-completion/zsh/_hostnamectl
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2017-02-28 11:54:52 +0100
committerDavid Herrmann <dh.herrmann@gmail.com>2017-02-28 11:54:52 +0100
commit34b52450c51fc8803c2ba6f71c8de59e8642bdda (patch)
tree981d6898026b641c06e9a87d8b11da4289bfc97f /shell-completion/zsh/_hostnamectl
parentFix MIPS N64 and N32 LIB_ARCH_TUPLE (#5469) (diff)
downloadsystemd-34b52450c51fc8803c2ba6f71c8de59e8642bdda.tar.xz
systemd-34b52450c51fc8803c2ba6f71c8de59e8642bdda.zip
hostname: add 'convertible' chassis type
Add the 'convertible' type to the set of allowed chassis. This applies to all devices that can be transformed by the user from laptop style to tablet style. This does not add any auto-detection, yet. It only makes 'set-chassis' accept 'convertible' as valid input.
Diffstat (limited to 'shell-completion/zsh/_hostnamectl')
-rw-r--r--shell-completion/zsh/_hostnamectl2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/zsh/_hostnamectl b/shell-completion/zsh/_hostnamectl
index 7528e0649d..8c4a354af2 100644
--- a/shell-completion/zsh/_hostnamectl
+++ b/shell-completion/zsh/_hostnamectl
@@ -18,7 +18,7 @@ _hostnamectl_set-icon-name() {
_hostnamectl_set-chassis() {
if (( CURRENT <= 3 )); then
- _chassis=( desktop laptop server tablet handset watch embedded vm container )
+ _chassis=( desktop laptop convertible server tablet handset watch embedded vm container )
_describe chassis _chassis
else
_message "no more options"