install to use pip certbot, instead of apt.

migrating to discord using block style.
This commit is contained in:
2023-09-06 17:50:43 +00:00
parent 807f5cdab7
commit b528568876
4 changed files with 21 additions and 6 deletions
+2 -2
View File
@@ -8,9 +8,9 @@ cd "${BACKUP_DIRECTORY}"
backups=`find * -type f | sort | xargs du -h`
echo "${backups}"
${LOCATION}/../discord.sh general "${backups}"
${LOCATION}/../discord.sh block "${backups}"
hashes=`find * -type f | sort | xargs md5sum --tag`
echo "${hashes}"
${LOCATION}/../discord.sh general "${hashes}"
${LOCATION}/../discord.sh block "${hashes}"
+2 -2
View File
@@ -11,11 +11,11 @@ for index in "${!STORAGE_ALERT[@]}"; do
if [[ "0" != "${alert}" ]]; then
echo "${storage} is below threshold ${STORAGE_ALERT[$index]}G"
${LOCATION}/../discord-if-distinct.sh storage "storage-${COUNT}" "${storage} is below threshold ${STORAGE_ALERT[$index]}G"
${LOCATION}/../discord-if-distinct.sh block "storage-${COUNT}" "${storage} is below threshold ${STORAGE_ALERT[$index]}G"
else
echo "${storage} is above threshold ${STORAGE_ALERT[$index]}G"
${LOCATION}/../discord-if-distinct.sh storage "storage-${COUNT}" "${storage} is above threshold ${STORAGE_ALERT[$index]}G"
${LOCATION}/../discord-if-distinct.sh block "storage-${COUNT}" "${storage} is above threshold ${STORAGE_ALERT[$index]}G"
fi
let "COUNT++"
+1 -1
View File
@@ -7,5 +7,5 @@ source "${LOCATION}/../config.sh"
storage=`${LOCATION}/../df-custom.sh ${STORAGE_MONITOR[@]}`
echo "${storage}"
${LOCATION}/../discord.sh storage "${storage}"
${LOCATION}/../discord.sh block "${storage}"
+16 -1
View File
@@ -59,7 +59,22 @@ echo "----- Install extra utilities: ncdu, zip, iftop -----"
install_collection 'extra utilities' ncdu zip unzip iftop colorized-logs php-cli ca-certificates curl gnupg lsb-release
echo "----- Install nginx + certbot -----------------------"
install_collection 'nginx, certbot' nginx certbot python3-certbot-nginx
read -p 'Install nginx, and python3-pip, then install via pip certbot, certbot-nginx, and certbot-dns-google-domain? [y/N]: ' nginx_install
case $nginx_install in
[Yy]* )
if [ $called_update = false ]; then
echo "Updating APT before Installing"
sudo apt update
called_update=true
fi
echo "Installing nginx python3-pip"
sudo apt install nginx python3-pip -y
sudo pip install certbot certbot-nginx certbot-dns-google-domains
;;
* )
echo 'Skipping'
;;
esac
echo "----- Add nginx logging conf ------------------------"
read -p 'Install the "tabbed_detailed" nginx log format? [y/N]: ' nginx_log