-
Notifications
You must be signed in to change notification settings - Fork 8
/
install.sh
executable file
·62 lines (54 loc) · 1.69 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash -l
# Checking if Rust is installed
if [ `which rustc` ];
then
# Rust is installed
echo "Rust already installed"
else
# Rust is not installed
# Ask for user consent before proceeding with installation
read -p "Rust is not installed. Do you want to install Rust now ? (necessary for Abrute) [y/n] " Rust_answer
if [ "$Rust_answer" == "y" ];
then
# User agreed, proceed with installation
curl https://sh.rustup.rs -sSf | sh -s -- --channel=nightly
else
# User refused, abort installation
exit 1
fi
fi
# Checking if Aescrypt is installed
if [ -f /usr/bin/aescrypt ] && [ -f /usr/bin/aescrypt_keygen ];
then
# Aescrypt is already installed
echo "Aescrypt already installed"
else
# Aescrypt is not installed, proceed with installation
echo "Installing Aescrypt"
wget https://www.aescrypt.com/download/v3/linux/aescrypt-3.13.tgz
tar -xzf aescrypt-3.13.tgz
cd aescrypt-3.13/src
make && sudo make install
cd ../.. && rm -rf aescrypt-3.13 && rm aescrypt-3.13.tgz
echo "Aescrypt installed"
fi
# Checking for the existence of source files
if [ -d src ] && [ -d .git ];
then
# The source files are already there. We can build and install Abrute.
cargo +nightly build --release
sudo cp target/release/abrute /usr/bin
else
# Downloading the source files
wget https://github.com/danielpclark/abrute/archive/master.zip
unzip master.zip
cd abrute-master
# Building and installing
bash -lc "cargo +nightly build --release"
sudo cp target/release/abrute /usr/bin
# Cleaning
cd ..
rm master.zip
rm -r abrute-master/
fi
echo "Thank you for installing Abrute. Enjoy !"