ctf-tools/stegdetect/install-root

19 lines
354 B
Text
Raw Normal View History

#!/bin/bash
set -eu -o pipefail
2015-05-14 04:36:14 +00:00
case "$DISTRI" in
"debian")
apt-get -y install automake1.4
;;
"archlinux")
echo "archlinux is currently not supported!"
echo "Update install-root and do a pull-request ;)"
exit 1
;;
*)
echo "Unsupported distribution: ''"
exit 1
;;
esac