blob: b9e3c579663873959d043e9cc7243abf7941cba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Please run this as root"
exit
fi
# Make sure rust is able to build as root
rustup default stable
# Build crab
cargo build --release
# Copy executable to bin
cp ./target/release/crab /bin/crab
chown root:root /bin/crab
chmod 6755 /bin/crab
# Set up config files
cp pam /etc/pam.d/crab
cp -n conf /etc/crab.conf
|