diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-11-09 00:51:47 -0500 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-11-09 00:51:47 -0500 |
commit | f36e11177342206419f22e46d7e121f0731cce9a (patch) | |
tree | 8248d3a3ad38071c75f9a5ac25b9347f2cb89a89 /install.sh | |
parent | aur support (diff) | |
download | crab-f36e11177342206419f22e46d7e121f0731cce9a.tar.gz crab-f36e11177342206419f22e46d7e121f0731cce9a.tar.bz2 crab-f36e11177342206419f22e46d7e121f0731cce9a.zip |
fix session pid, add uninstall sh file
Diffstat (limited to '')
-rwxr-xr-x | install.sh | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,11 +6,12 @@ if [[ $(/usr/bin/id -u) -ne 0 ]]; then fi # Copy executable to bin -cp ./target/release/crab /bin/crab +cp ./target/release/crab /usr/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 -chmod 660 /etc/crab.conf +mkdir /usr/share/crab +cp conf /usr/share/crab/crab.conf +chmod 660 /usr/share/crab/crab.conf |