# HG changeset patch # User Hans-G?nter Theisgen # Date 1658160663 -3600 # Node ID 51e40ddb3d8c28714bae986d630ce36dcd65a543 # Parent 67b094c7981077d8ff056db935c6e8fa52c0cd62 updated rsnapshot (1.4.3 -> 1.4.4) diff -r 67b094c79810 -r 51e40ddb3d8c rsnapshot/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rsnapshot/description.txt Mon Jul 18 17:11:03 2022 +0100 @@ -0,0 +1,22 @@ +Rsnapshot is a filesystem snapshot utility based on rsync. +Rsnapshot makes it easy to make periodic snapshots of local machines, +and remote machines over ssh. +The code makes extensive use of hard links whenever possible, to greatly +reduce the disk space required. + +Depending on your configuration, it is quite possible to set up in just +a few minutes. +Files can be restored by the users who own them, without the root user +getting involved. + +There are no tapes to change, so once it's set up, your backups can happen +automatically untouched by human hands. +And because rsnapshot only keeps a fixed (but configurable) number of +snapshots, the amount of disk space used will not continuously grow. + +It is written entirely in perl with no module dependencies, and has been +tested with versions 5.004 through 5.16.3. +It should work on any reasonably modern UNIX compatible OS. + +Rsnapshot was originally based on an article called Easy Automated +Snapshot-Style Backups with Linux and Rsync, by Mike Rubel. diff -r 67b094c79810 -r 51e40ddb3d8c rsnapshot/receipt --- a/rsnapshot/receipt Mon Jul 18 16:27:00 2022 +0100 +++ b/rsnapshot/receipt Mon Jul 18 17:11:03 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="rsnapshot" -VERSION="1.4.3" +VERSION="1.4.4" CATEGORY="system-tools" SHORT_DESC="A remote filesystem snapshot utility." MAINTAINER="slaxemulator@gmail.com" @@ -33,15 +33,14 @@ --sysconfdir=/etc \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr mkdir -p $fs/etc - cp -a $install/usr/bin $fs/usr cp -a $install/etc/rsnapshot.conf.default $fs/etc/rsnapshot.conf + cook_copy_folders bin }