ctf-tools/dislocker/install-root

20 lines
410 B
Bash
Executable file

#!/bin/bash
set -eu -o pipefail
case "$DISTRI" in
"ubuntu")
;& # fallthrough
"debian")
apt-get -y install libfuse-dev libpolarssl-dev
;;
"archlinux")
echo "archlinux is currently not supported!"
echo "Update install-root and do a pull-request ;)"
exit 1
;;
*)
echo "Unsupported distribution: ''"
exit 1
;;
esac