view mount-crypt @ 5:14e726efe9b0

Change from sudo (which may record command) to su, since we're mounting something private/encrypted
author IBBoard <dev@ibboard.co.uk>
date Sun, 09 Nov 2014 09:29:01 +0000
parents e85e3470a41e
children
line wrap: on
line source

#! /bin/bash

if [ $# -ne 1 ]; then
	echo "Usage: $0 <filename>" >&2
	exit 1
fi

if [ ! -f "$1" ]; then
	echo "File doesn't exist" >&2
	exit 2
fi

LOOP_DEV=$(su -c "losetup --find --show \"$1\"")
MAPPER=${LOOP_DEV##*/}
su -c "cryptsetup luksOpen $LOOP_DEV $MAPPER && mkdir -p /media/$MAPPER && mount /dev/mapper/$MAPPER /media/$MAPPER"