You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							77 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
	
	
							77 lines
						
					
					
						
							2.4 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: change hestia ssl certificate
 | 
						|
# options: SSL_DIR [RESTART]
 | 
						|
#
 | 
						|
# example: v-change-sys-hestia-ssl /home/new/dir/path yes
 | 
						|
#
 | 
						|
# This function changes hestia SSL certificate and the key.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
domain='certificate'
 | 
						|
ssl_dir=$1
 | 
						|
restart=$2
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# shellcheck source=/usr/local/hestia/func/domain.sh
 | 
						|
source $HESTIA/func/domain.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '1' "$#" 'SSL_DIR [RESTART]'
 | 
						|
is_format_valid 'ssl_dir'
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Checking new certificate
 | 
						|
certificate=$(cat $ssl_dir/$domain.crt | grep -n END)
 | 
						|
certificate_count=$(echo "$certificate" | wc -l)
 | 
						|
if [ "$certificate_count" -gt 1 ]; then
 | 
						|
	crt_end=$(echo "$certificate" | head -n1 | cut -f 1 -d :)
 | 
						|
	crt_lines=$(wc -l $ssl_dir/$domain.crt | cut -f1 -d ' ')
 | 
						|
	pem_begin=$((crt_lines - crt_end))
 | 
						|
	mv $ssl_dir/$domain.crt $ssl_dir/$domain.crt_full
 | 
						|
	head -n $crt_end $ssl_dir/$domain.crt_full > $ssl_dir/$domain.crt
 | 
						|
	tail -n $pem_begin $ssl_dir/$domain.crt_full > $ssl_dir/$domain.ca
 | 
						|
	is_web_domain_cert_valid
 | 
						|
	mv -f $ssl_dir/$domain.crt_full $ssl_dir/$domain.crt
 | 
						|
	rm -f $ssl_dir/$domain.ca
 | 
						|
else
 | 
						|
	is_web_domain_cert_valid
 | 
						|
fi
 | 
						|
 | 
						|
# Adding new certificate
 | 
						|
cp -f $ssl_dir/certificate.crt $HESTIA/ssl/certificate.crt
 | 
						|
cp -f $ssl_dir/certificate.key $HESTIA/ssl/certificate.key
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Restarting web server
 | 
						|
if [ "$restart" != 'no' ]; then
 | 
						|
	kill -HUP $(cat /run/hestia-nginx.pid)
 | 
						|
	$BIN/v-restart-mail "$restart"
 | 
						|
fi
 | 
						|
 | 
						|
# Logging
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |