mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-16 22:57:01 +00:00
hashpump arch support
This commit is contained in:
parent
7df5ad8de0
commit
720061723f
1 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,14 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get -y install libssl-dev
|
||||
case "$DISTRI" in
|
||||
debian)
|
||||
apt-get -y install libssl-dev
|
||||
;;
|
||||
archlinux)
|
||||
pacman -Syu --noconfirm openssl
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported distribution"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Add table
Reference in a new issue