blob: 05a50652ad6bd76c3e88d00aa1e40046253087bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#compdef cryptsetup
typeset expl
if (( CURRENT == 2 )) {
_wanted action expl action \
compadd create remove status resize \
luks{Format,Open,Close,{Add,Remove}Key} \
luks{KillSlot,UUID,Dump} \
isLuks
}
|