>>>>> 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