62 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
##################################################
 | 
						|
# Mount file                                     #
 | 
						|
# - /etc/rsyncd.conf                             #
 | 
						|
# Mount dir                                      #
 | 
						|
# - LOG_DIR                                      #
 | 
						|
# - PATH specified in every module               #
 | 
						|
##################################################
 | 
						|
 | 
						|
set -euo pipefail
 | 
						|
export LANG=en_US.UTF-8
 | 
						|
trap Quit EXIT
 | 
						|
 | 
						|
PIDS=
 | 
						|
GOT_SIGTERM=
 | 
						|
LOG_DIR='/var/log/rsync'
 | 
						|
 | 
						|
function Print {
 | 
						|
    local file=/dev/null
 | 
						|
    [ '-f' = "$1" ] && file=$2 && shift && shift
 | 
						|
    date +"[%F %T] $*" | tee -a $file
 | 
						|
}
 | 
						|
 | 
						|
function Quit {
 | 
						|
    Print killing rsync ...
 | 
						|
    while :; do
 | 
						|
        pkill -f rsync && Print killing rsync ... || break
 | 
						|
        sleep 1
 | 
						|
    done
 | 
						|
    Print Container stopped.
 | 
						|
    test -n "$GOT_SIGTERM"
 | 
						|
}
 | 
						|
 | 
						|
function StartProc {
 | 
						|
    Print Starting rsync ...
 | 
						|
    rm -f $LOG_DIR/rsyncd.pid
 | 
						|
    rsync --daemon \
 | 
						|
        --no-detach \
 | 
						|
        --port=873 \
 | 
						|
        --log-file=$LOG_DIR/rsyncd.log \
 | 
						|
        --dparam=pidfile=$LOG_DIR/rsyncd.pid \
 | 
						|
        &>> $LOG_DIR/rsyncd.out &
 | 
						|
    PIDS="$PIDS $!"
 | 
						|
    Print Rsync started.
 | 
						|
}
 | 
						|
 | 
						|
function Main {
 | 
						|
    local pid=
 | 
						|
    StartProc
 | 
						|
    trap "GOT_SIGTERM=1; Print Got SIGTERM ..." SIGTERM
 | 
						|
    while [ -z "$GOT_SIGTERM" ] && sleep 2; do
 | 
						|
        for pid in $PIDS; do
 | 
						|
            [ ! -e /proc/$pid ] && Print Unexpected error! && exit
 | 
						|
        done
 | 
						|
    done
 | 
						|
}
 | 
						|
 | 
						|
# Start here
 | 
						|
Main
 | 
						|
 |