From: Adam R. <aro...@ci...> - 2004-12-20 19:52:43
|
Hi All - Just thought I'd share what I needed to do to get v1.2.1 to run properly on Solaris. On line 849 of the flexbackup script, there is the following line: push(@cmds, "[ ! -e $result ]"); The "-e" test is not applicable to the standard Bourne shell, which would ultimately cause the script to error out with the following message: sh: test: argument expected Changing the line to read: push(@cmds, "[ ! -f $result ]"); results in a working script. Regards, -Adam |