summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2015-05-24 13:25:52 +0200
committerRonny Chevalier <chevalier.ronny@gmail.com>2015-05-30 11:19:35 +0200
commitda090dfd0b6a86694084ebc27645ead3f25ef0b6 (patch)
tree9b33d0071bdc097df4bedfbcf4200387805844f3 /shell-completion
parent0805e9a9c87845be9f801efacc0a358da6991190 (diff)
zsh-completion: update bootctl
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/zsh/_bootctl7
1 files changed, 6 insertions, 1 deletions
diff --git a/shell-completion/zsh/_bootctl b/shell-completion/zsh/_bootctl
index 7d2453cc2c..ce776c052f 100644
--- a/shell-completion/zsh/_bootctl
+++ b/shell-completion/zsh/_bootctl
@@ -4,7 +4,10 @@
{
local -a _bootctl_cmds
_bootctl_cmds=(
- "status:Show current firmware and boot settings"
+ "status:Show status of installed systemd-boot and EFI variables"
+ "instal:Install systemd-boot to the ESP and EFI variables"
+ "update:Update systemd-boot in the ESP and EFI variables"
+ "remove:Remove systemd-boot from the ESP and EFI variables"
)
if (( CURRENT == 1 )); then
_describe -t commands 'bootctl command' _bootctl_cmds || compadd "$@"
@@ -22,4 +25,6 @@
_arguments \
{-h,--help}'[Prints a short help text and exits.]' \
'--version[Prints a short version string and exits.]' \
+ '--path=[Path to the EFI System Partition (ESP)]:path:_directories' \
+ '--no-variables[Do not touch EFI variables]' \
'*::bootctl command:_bootctl_command'