This is the mail archive of the cygwin-apps mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [ITP] rsnapshot 1.3.0 -- A local and remote filesystem snapshot utility


>>>>> Jari Aalto writes:

    > Included in Debian stable:

    >     http://packages.debian.org/rsnapshot

Both binaries have the following as the first 3 lines. Looks a little strange.

#!/usr/bin/perl -w

# the path to perl at the top was generated by autoconf

#!/usr/bin/perl -w



Also your postinstall script has two times the following code block:

for i in   etc etc/rsnapshot.conf
do
    src=$fromdir/$i
    dest=/$i

    [ -e $dest ] && continue

    if [ -d $src ] ; then
        install -d -m 755 $dest
        continue
    fi

    install -m 644 $src $dest
done


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]