Remove scripts

This commit is contained in:
Robert Partridge 2022-07-20 16:40:02 -04:00
parent 67c4b80d1a
commit 6ba6ba1cfb
2 changed files with 0 additions and 17 deletions

View File

@ -1,15 +0,0 @@
#!/bin/bash
clear
# check for root permissions
if [ "$EUID" -ne 0 ]
then echo "PLEASE RUN THIS SCRIPT WITH ROOT PRIVILEGES"
exit
fi
# get domain
echo "Domain: "
read -e certdomain
# get certificates - certs are placed in /etc/letsencrypt/live/${certdomain}/
certbot certonly --standalone -d ${certdomain}

View File

@ -1,2 +0,0 @@
#!/bin/bash
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt clean