wok rev 25286

updated rsnapshot (1.4.3 -> 1.4.4)
author Hans-G?nter Theisgen
date Mon Jul 18 17:11:03 2022 +0100 (22 months ago)
parents 67b094c79810
children 298c4817ff72
files rsnapshot/description.txt rsnapshot/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rsnapshot/description.txt	Mon Jul 18 17:11:03 2022 +0100
     1.3 @@ -0,0 +1,22 @@
     1.4 +Rsnapshot is a filesystem snapshot utility based on rsync.
     1.5 +Rsnapshot makes it easy to make periodic snapshots of local machines,
     1.6 +and remote machines over ssh.
     1.7 +The code makes extensive use of hard links whenever possible, to greatly
     1.8 +reduce the disk space required.
     1.9 +
    1.10 +Depending on your configuration, it is quite possible to set up in just
    1.11 +a few minutes.
    1.12 +Files can be restored by the users who own them, without the root user
    1.13 +getting involved.
    1.14 +
    1.15 +There are no tapes to change, so once it's set up, your backups can happen
    1.16 +automatically untouched by human hands.
    1.17 +And because rsnapshot only keeps a fixed (but configurable) number of
    1.18 +snapshots, the amount of disk space used will not continuously grow.
    1.19 +
    1.20 +It is written entirely in perl with no module dependencies, and has been
    1.21 +tested with versions 5.004 through 5.16.3.
    1.22 +It should work on any reasonably modern UNIX compatible OS.
    1.23 +
    1.24 +Rsnapshot was originally based on an article called Easy Automated
    1.25 +Snapshot-Style Backups with Linux and Rsync, by Mike Rubel.
     2.1 --- a/rsnapshot/receipt	Mon Jul 18 16:27:00 2022 +0100
     2.2 +++ b/rsnapshot/receipt	Mon Jul 18 17:11:03 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="rsnapshot"
     2.7 -VERSION="1.4.3"
     2.8 +VERSION="1.4.4"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="A remote filesystem snapshot utility."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12 @@ -33,15 +33,14 @@
    2.13  		--sysconfdir=/etc		\
    2.14  		$CONFIGURE_ARGS &&
    2.15  	make &&
    2.16 -	make DESTDIR=$DESTDIR install
    2.17 +	make install DESTDIR=$DESTDIR
    2.18  }
    2.19  
    2.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.21  genpkg_rules()
    2.22  {
    2.23 -	mkdir -p $fs/usr
    2.24  	mkdir -p $fs/etc
    2.25  
    2.26 -	cp -a $install/usr/bin				$fs/usr
    2.27  	cp -a $install/etc/rsnapshot.conf.default	$fs/etc/rsnapshot.conf
    2.28 +	cook_copy_folders	bin
    2.29  }