diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-27 12:19:55 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-27 12:19:55 +0200 |
commit | f599f44fe1452350087509b4a26d2250f771a45e (patch) | |
tree | d624d3bbc6628db8bf90a0d061ed13d84e2c455b /crypt-umount | |
parent | 95b3e4bb744932ce4eac14bb350cc0455d15848a (diff) |
better crypt script
Diffstat (limited to 'crypt-umount')
-rwxr-xr-x | crypt-umount | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/crypt-umount b/crypt-umount deleted file mode 100755 index 9b99e10..0000000 --- a/crypt-umount +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/zsh - -. $(dirname $0:A)/func.zsh -check_root - -if [ "$#" -ne 1 ]; then - echo "missing args: umount_crypt <name>" - exit -fi - -NAME=$1 - -umount /media/$NAME -cryptsetup luksClose /dev/mapper/$NAME - |