Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8891d640bd | ||
|
|
7aac9ae933 | ||
|
|
19c931abb0 | ||
|
|
bcf6afad42 | ||
|
|
f7a20ac053 | ||
|
|
13613ab6d5 |
@@ -1,3 +1,15 @@
|
|||||||
# lego_acme_wrapper_script
|
# lego_acme_wrapper_script
|
||||||
|
|
||||||
wrapper script for lego acme
|
wrapper script for lego acme
|
||||||
|
|
||||||
|
### Features
|
||||||
|
- Issue certificates
|
||||||
|
- Revoke certificates
|
||||||
|
- Check status
|
||||||
|
- Install Web-Servers (Nginx, HAProxy, Apache)
|
||||||
|
- Update Lego
|
||||||
|
|
||||||
|
### Todo
|
||||||
|
|
||||||
|
- Auto create default conf file for issued certificates in Nginx (Only well conversant with Nginx)
|
||||||
|
|
||||||
+25
-22
@@ -35,8 +35,6 @@ set_env_variables() {
|
|||||||
export CERT_PATH=/etc/acme
|
export CERT_PATH=/etc/acme
|
||||||
export CONTACT_MAIL=xxxxxxxxxxxxxxxxxxxxxxxx
|
export CONTACT_MAIL=xxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
export DNS_PROVIDER=namecheap
|
export DNS_PROVIDER=namecheap
|
||||||
export NAMECHEAP_PROPAGATION_TIMEOUT=60
|
|
||||||
export NAMECHEAP_POLLING_INTERVAL=2
|
|
||||||
export NAMECHEAP_API_USER=xxxxxxxxxxxxxxxxxxxxxxxx
|
export NAMECHEAP_API_USER=xxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
export NAMECHEAP_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxx
|
export NAMECHEAP_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
|
|
||||||
@@ -45,7 +43,6 @@ set_env_variables() {
|
|||||||
export GOPATH=$HOME/.go
|
export GOPATH=$HOME/.go
|
||||||
export GO_HOME=/usr/local/go
|
export GO_HOME=/usr/local/go
|
||||||
export PATH=$PATH:$GO_HOME/bin:$GOPATH/bin
|
export PATH=$PATH:$GO_HOME/bin:$GOPATH/bin
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
check_dependencies() {
|
check_dependencies() {
|
||||||
@@ -106,6 +103,7 @@ install_jq() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
install_git() {
|
install_git() {
|
||||||
|
### Needed for updates
|
||||||
if ! command -v git 2>&1 >/dev/null; then
|
if ! command -v git 2>&1 >/dev/null; then
|
||||||
install_as_sudo
|
install_as_sudo
|
||||||
echo 'git module not installed'
|
echo 'git module not installed'
|
||||||
@@ -174,23 +172,17 @@ install_web_server() {
|
|||||||
case $option in
|
case $option in
|
||||||
"nginx")
|
"nginx")
|
||||||
eval "echo $SUDO_PASS | sudo -S $install_cmd install nginx* -y"
|
eval "echo $SUDO_PASS | sudo -S $install_cmd install nginx* -y"
|
||||||
printf "\n\n\n"
|
echo_message
|
||||||
echo "run below command as admin on rhel type OS to allow network connections"
|
|
||||||
echo "setsebool httpd_can_network_connect 1"
|
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
"apache")
|
"apache")
|
||||||
eval "echo $SUDO_PASS | sudo -S $install_cmd install apach2e* -y"
|
eval "echo $SUDO_PASS | sudo -S $install_cmd install apach2e* -y"
|
||||||
printf "\n\n\n"
|
echo_message
|
||||||
echo "run below command as admin on rhel type OS to allow network connections"
|
|
||||||
echo "setsebool httpd_can_network_connect 1"
|
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
"haproxy")
|
"haproxy")
|
||||||
eval "echo $SUDO_PASS | sudo -S $install_cmd install haproxy* -y"
|
eval "echo $SUDO_PASS | sudo -S $install_cmd install haproxy* -y"
|
||||||
printf "\n\n\n"
|
echo_message
|
||||||
echo "run below command as admin on rhel type OS to allow network connections"
|
|
||||||
echo "setsebool httpd_can_network_connect 1"
|
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -198,9 +190,18 @@ install_web_server() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo_message(){
|
||||||
|
|
||||||
|
printf "\n\n\n"
|
||||||
|
echo "run below command as admin if SELINUX is enabled to allow network connections"
|
||||||
|
echo "setsebool httpd_can_network_connect 1"
|
||||||
|
echo "Install firewall (firewall-cmd or ufw) for additional security"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
update_lego() {
|
update_lego() {
|
||||||
export GO111MODULE=on
|
export GO111MODULE=on
|
||||||
eval "go install github.com/go-acme/lego/v4/cmd/lego@latest"
|
eval "go install github.com/go-acme/lego/v4/cmd/lego@latest" 2>&1 | tee -a $LOG_FILE
|
||||||
}
|
}
|
||||||
|
|
||||||
get_system_information() {
|
get_system_information() {
|
||||||
@@ -227,7 +228,7 @@ get_os_type() {
|
|||||||
install_cmd="apt"
|
install_cmd="apt"
|
||||||
elif [[ $os_type == *"almalinux"* ]]; then
|
elif [[ $os_type == *"almalinux"* ]]; then
|
||||||
install_cmd="yum"
|
install_cmd="yum"
|
||||||
elif [[ $os_type == *"redhat"* ]]; then
|
elif [[ $os_type == *"rhel"* ]]; then
|
||||||
install_cmd="yum"
|
install_cmd="yum"
|
||||||
elif [[ $os_type == *"centos"* ]]; then
|
elif [[ $os_type == *"centos"* ]]; then
|
||||||
install_cmd="yum"
|
install_cmd="yum"
|
||||||
@@ -271,17 +272,20 @@ list() {
|
|||||||
autorenew() {
|
autorenew() {
|
||||||
|
|
||||||
###to be used to store output from crontab renewals
|
###to be used to store output from crontab renewals
|
||||||
LOG_FILE="$CERT_PATH/log"
|
LOG_PATH="$CERT_PATH/log"
|
||||||
if [ ! -d $LOG_FILE ]; then
|
DATE=$(date +%F-%H%M)
|
||||||
mkdir -p $LOG_FILE
|
LOG_FILE="$LOG_PATH/acme-$DATE"
|
||||||
|
if [ ! -d $LOG_PATH ]; then
|
||||||
|
mkdir -p $PATH
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
for files in $(find $LEGO_PATH/certificates/*.json -type f); do
|
for files in $(find $LEGO_PATH/certificates/*.json -type f); do
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
for file in $files; do
|
for file in $files; do
|
||||||
temp_domain=$(cat $file | jq .domain | sed -e 's/^"//' -e 's/"$//')
|
temp_domain=$(cat $file | jq .domain | sed -e 's/^"//' -e 's/"$//')
|
||||||
renew_command="$command -d $temp_domain renew"
|
renew_command="$command -d $temp_domain renew"
|
||||||
eval $renew_command
|
eval " $renew_command" 2>&1 | tee -a $LOG_FILE
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -290,9 +294,8 @@ autorenew() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
functionlist() {
|
functionlist() {
|
||||||
echo "Usage: {run, renew, revoke, list, update lego}"
|
|
||||||
PS3="Select Option to enter option or and key to exit: "
|
PS3="Select Option to enter option or and key to exit: "
|
||||||
options=("run" "revoke" "renew" "list" "update lego" "install web server")
|
options=("run" "revoke" "renew" "list" "update lego" "install webserver")
|
||||||
select option in "${options[@]}"; do
|
select option in "${options[@]}"; do
|
||||||
case $option in
|
case $option in
|
||||||
"run")
|
"run")
|
||||||
@@ -311,7 +314,7 @@ functionlist() {
|
|||||||
update_lego
|
update_lego
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
"install web server")
|
"install webserver")
|
||||||
install_web_server
|
install_web_server
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
@@ -349,7 +352,7 @@ cd $CERT_PATH
|
|||||||
echo "Acme Script for $DNS_PROVIDER"
|
echo "Acme Script for $DNS_PROVIDER"
|
||||||
## If no parameters are given, print which are avaiable.
|
## If no parameters are given, print which are avaiable.
|
||||||
echo "Usage: only dns challenge function available"
|
echo "Usage: only dns challenge function available"
|
||||||
command="lego --email $CONTACT_MAIL --dns $DNS_PROVIDER "
|
command="lego --email $CONTACT_MAIL --dns $DNS_PROVIDER --dns.propagation-wait 240s "
|
||||||
IFS=","
|
IFS=","
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
functionlist
|
functionlist
|
||||||
|
|||||||
Reference in New Issue
Block a user