mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-04-20 14:17:04 -04:00
the testsuite. Improved the home-directory-changing code and added an error message when "localhost" is not the hostname specified. Use the updated script in the testsuite instead of creating a pretend-ssh script in a couple spots.
50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
|
|
|
|
# This program is distributable under the terms of the GNU GPL (see
|
|
# COPYING)
|
|
|
|
# We don't really want to start the server listening, because that
|
|
# might interfere with the security or operation of the test machine.
|
|
# Instead we use the fake-connect feature to dynamically assign a pair
|
|
# of ports.
|
|
|
|
# Having started the server we try some basic operations against it:
|
|
|
|
# getting a list of module
|
|
# listing files in a module
|
|
# retrieving a module
|
|
# uploading to a module
|
|
# checking the log file
|
|
# password authentication
|
|
|
|
# TODO: Put the common framework in a common file, so that we can have
|
|
# subtests fail and keep going.
|
|
|
|
. "$suitedir/rsync.fns"
|
|
|
|
SSH="src/support/lsh --no-cd"
|
|
|
|
build_rsyncd_conf
|
|
|
|
cd "$scratchdir"
|
|
|
|
ln -s test-rsyncd.conf rsyncd.conf
|
|
|
|
confopt=''
|
|
case `id -u` in
|
|
0)
|
|
# Root needs to specify the config file, or it uses /etc/rsyncd.conf.
|
|
echo "Forcing --config=$conf"
|
|
confopt=" --config=$conf"
|
|
;;
|
|
esac
|
|
|
|
$RSYNC -ve "$SSH" --rsync-path="$RSYNC$confopt" localhost::
|
|
|
|
RSYNC_CONNECT_PROG="$RSYNC --config=$conf --daemon"
|
|
export RSYNC_CONNECT_PROG
|
|
|
|
$RSYNC -v localhost::
|