diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-11-11 16:31:28 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-11-11 16:31:28 -0500 |
commit | bf85fe72bf51020cc6fd46117d8009438c5f6973 (patch) | |
tree | 6f6c2ef19b93c80b9cc4567a4a94ce3621ff8eb4 | |
parent | fix install file (diff) | |
download | crab-bf85fe72bf51020cc6fd46117d8009438c5f6973.tar.gz crab-bf85fe72bf51020cc6fd46117d8009438c5f6973.tar.bz2 crab-bf85fe72bf51020cc6fd46117d8009438c5f6973.zip |
fix install file part 2
-rwxr-xr-x | deployments/source/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deployments/source/install.sh b/deployments/source/install.sh index a3c4e4e..b488693 100755 --- a/deployments/source/install.sh +++ b/deployments/source/install.sh @@ -11,11 +11,11 @@ chown root:root /usr/bin/crab chmod 4755 /usr/bin/crab # Set up config files -cp pam /etc/pam.d/crab +cp ./config/pam /etc/pam.d/crab chmod 600 /etc/pam.d/crab mkdir /usr/share/crab chmod 644 /usr/share/crab -cp conf /usr/share/crab/crab.conf +cp ./config/default /usr/share/crab/crab.conf chmod 644 /usr/share/crab/crab.conf |