view mount-crypt @ 15:1dfa242b3b38

Fix documentation for icon linking script
author IBBoard <dev@ibboard.co.uk>
date Mon, 19 Mar 2018 19:33:52 +0000
parents 14e726efe9b0
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"