diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-22 20:36:54 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-22 20:36:54 +0200 |
commit | 035af3d7aded616e4b87a77985c8b9161b14436a (patch) | |
tree | c862d012838896265f3bd2dba37797ccfd2cd39f /etc/completions | |
parent | a3dd790b9ea2ab530a02a582d446ac376541f57a (diff) |
_cryptsetup: Fix luksClose
Diffstat (limited to 'etc/completions')
-rw-r--r-- | etc/completions/_cryptsetup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/completions/_cryptsetup b/etc/completions/_cryptsetup index 9f75ec0..30d70cc 100644 --- a/etc/completions/_cryptsetup +++ b/etc/completions/_cryptsetup @@ -20,7 +20,7 @@ function _cryptsetup_mapping { function _cryptsetup_arguments { if (( CURRENT == 2 )) { case ${words[1]} in - create|remove|status|resize) _cryptsetup_mapping ;; + create|remove|status|resize|luksClose) _cryptsetup_mapping ;; luks(Format|Open|AddKey|RemoveKey|KillSlot|DelKey|UUID|Dump)|isLuks) _cryptsetup_device ;; esac } elif (( CURRENT == 3 )) { |