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.
		
		
		
		
		
			
		
			
				
					
					
						
							73 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							73 lines
						
					
					
						
							2.0 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: restart ftp service
 | 
						|
# options: NONE
 | 
						|
#
 | 
						|
# example: v-restart-ftp
 | 
						|
#
 | 
						|
# This function tells ftp server to reread its configuration.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# 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
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
send_email_report() {
 | 
						|
	email=$(grep CONTACT $HESTIA/data/users/admin/user.conf)
 | 
						|
	email=$(echo "$email" | cut -f 2 -d "'")
 | 
						|
	tmpfile=$(mktemp)
 | 
						|
	subj="$(hostname): $FTP_SYSTEM restart failed"
 | 
						|
	if [ -f /etc/redhat-release ]; then
 | 
						|
		systemctl restart "$FTP_SYSTEM" >> $tmpfile 2>&1
 | 
						|
	else
 | 
						|
		service "$FTP_SYSTEM" configtest >> $tmpfile 2>&1
 | 
						|
		service "$FTP_SYSTEM" restart >> $tmpfile 2>&1
 | 
						|
	fi
 | 
						|
	cat $tmpfile | $SENDMAIL -s "$subj" $email
 | 
						|
	rm -f $tmpfile
 | 
						|
}
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Exit
 | 
						|
if [ -z "$FTP_SYSTEM" ] || [ "$FTP_SYSTEM" = 'remote' ]; then
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
if [ "$1" = "no" ]; then
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
# Schedule restart
 | 
						|
if [ "$1" = 'scheduled' ] || [ -z "$1" ] && [ "$SCHEDULED_RESTART" = 'yes' ]; then
 | 
						|
	sed -i "/\/$SCRIPT now/d" $HESTIA/data/queue/restart.pipe
 | 
						|
	echo "$BIN/$SCRIPT now" >> $HESTIA/data/queue/restart.pipe
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
# Restart system
 | 
						|
$BIN/v-restart-service "$FTP_SYSTEM" "$1" > /dev/null 2>&1
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
	send_email_report
 | 
						|
	check_result "$E_RESTART" "$FTP_SYSTEM restart failed"
 | 
						|
fi
 | 
						|
 | 
						|
# Update restart queue
 | 
						|
if [ -e "$HESTIA/data/queue/restart.pipe" ]; then
 | 
						|
	sed -i "/\/$SCRIPT now/d" $HESTIA/data/queue/restart.pipe
 | 
						|
fi
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
exit
 |