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




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
flexbackup-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/flexbackup-help

Reply via email to