Hello everyone!
As this is my first post, I'd like to say this: Thanks to the developers and all that participated for a nice and convenient software, I like it very much. I am using tar over ssh and improved security as outlined in http://backuppc.sourceforge.net/faq/ssh.html . The relevant parts of the host config are: > $Conf{TarShareName} = [ '/mnt/dosc/Dokumente und Einstellungen/',]; > > $Conf{TarClientCmd} = '$sshPath -q -x -n -l backuppc $host' > . ' /usr/bin/env LC_ALL=C sudo > /usr/local/bin/tarCreateBackuppc -v -f - -C $shareName+' > . ' --totals'; This did not work because of the spaces in the directory name. The culprit was the script on the client host, "tarCreateBackuppc" in my case. Using 'exec /bin/tar -c "$@"' instead of 'exec /bin/tar -c $*' fixed this. Is someone reading this who can include this into the FAQ? Regards Florian -- Florian Hinzmann private: [EMAIL PROTECTED] Debian: [EMAIL PROTECTED] PGP Key / ID: 1024D/B4071A65 Fingerprint : F9AB 00C1 3E3A 8125 DD3F DF1C DF79 A374 B407 1A65 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ BackupPC-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/backuppc-users http://backuppc.sourceforge.net/
