Initial commit
This commit is contained in:
28
install.sh
Executable file
28
install.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
run_directory=$(dirname $(readlink -f "$0"))
|
||||
user=$(whoami)
|
||||
|
||||
if [ -f $run_directory/.disabled ]; then
|
||||
echo "Installation is disabled. Exiting..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $user != 'root' ]]; then
|
||||
sudo="sudo"
|
||||
else
|
||||
sudo=""
|
||||
fi
|
||||
|
||||
$sudo cp $run_directory/*.crt /etc/ca-certificates/trust-source/anchors/
|
||||
if command -v update-ca-trust > /dev/null; then
|
||||
$sudo update-ca-trust
|
||||
elif command -v update-ca-certificates > /dev/null; then
|
||||
$sudo update-ca-certificates
|
||||
else
|
||||
echo "No update-ca binary found. Exiting with error!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Finished install. Exiting..."
|
||||
exit 0
|
||||
Reference in New Issue
Block a user