summaryrefslogtreecommitdiff
path: root/mount_crypt
blob: 517c444d99d3ec23d7325df72d83f8caa0c251df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

. /home/pks/bin/func.zsh
check_root

if [ "$#" -ne 2 ]; then
  echo "missing args: mount_crypt </dev/device> <name>"
  exit
fi

cryptsetup luksOpen $1 $2
mount /dev/mapper/$2