Displaying 1 result from an estimated 1 matches for "with_rsyncd_conf".
2002 Feb 21
1
[patch] configurable RSYNCD_CONF
...7 2002
@@ -85,6 +85,30 @@
AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
+AC_ARG_WITH(rsyncd-conf,
+ AC_HELP_STRING([--with-rsyncd-conf=PATH], [set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
+ [ if test ! -z "$with_rsyncd_conf" ; then
+ case $with_rsyncd_conf in
+ yes)
+ RSYNCD_CONF="/etc/rsyncd.conf"
+ ;;
+ no)
+ RSYNCD_CONF="/etc/rsyncd.conf"
+ ;;
+ /*)
+ RSYNCD_CONF="$with_rsyncd_conf"
+ ;;
+ *)
+ AC_MSG_ERROR(You must specify...