diff options
Diffstat (limited to 'mount_crypt')
-rwxr-xr-x | mount_crypt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mount_crypt b/mount_crypt index d4a6bc4..dc1d59d 100755 --- a/mount_crypt +++ b/mount_crypt @@ -3,6 +3,11 @@ . /home/pks/bin/func.zsh check_root -cryptsetup luksOpen /dev/disk/by-id/scsi-SATA_WDC_WD1002FAEX-_WD-WCAW32441082-part1 remote_backup -mount /dev/mapper/remote_backup /mnt/ +if [ "$#" -ne 2 ]; then + echo "missing args." + exit +fi + +cryptsetup luksOpen $1 $2 +mount /dev/mapper/$2 |