mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-14 20:37:40 -04:00
31 lines
772 B
Bash
31 lines
772 B
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)
|
|
|
|
# This test starts up an rsync daemon on a high-numbered port using a
|
|
# configuration file from the test directory. I can't think of a good
|
|
# way to choose it dynamically at the moment, so we just use 2612. If
|
|
# that's in use then you lose.
|
|
|
|
# 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"
|
|
|
|
build_rsyncd_conf
|
|
start_rsyncd
|
|
|
|
|