mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-15 11:38:56 +00:00
13 lines
334 B
Plaintext
13 lines
334 B
Plaintext
|
#!/bin/bash
|
||
|
# This script supports using stunnel to secure an rsync daemon connection.
|
||
|
# Note that this requires at least version 4.x of stunnel.
|
||
|
case "$@" in
|
||
|
*rsync://*) ;;
|
||
|
*::*) ;;
|
||
|
*)
|
||
|
echo "You must use rsync-ssl with a daemon-style hostname." 0>&1
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
exec @bindir@/rsync --rsh=@bindir@/stunnel-rsync "${@}"
|