Your message dated Tue, 23 Feb 2010 01:02:51 +0000
with message-id <[email protected]>
and subject line Bug#413439: fixed in rsnapshot 1.3.1-1
has caused the Debian Bug report #413439,
regarding "ERROR: gnu_cp_al() needs a valid directory as an argument"
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
413439: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413439
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: rsnapshot
Version: 1.2.9-1
Severity: normal
# rsnapshot sync
----------------------------------------------------------------------------
rsnapshot encountered an error! The program was invoked with these
options:
/usr/bin/rsnapshot sync
----------------------------------------------------------------------------
ERROR: gnu_cp_al() needs a valid directory as an argument
ERROR: Error! cp_al("/var/cache/rsnapshot/hourly.0",
"/var/cache/rsnapshot/.sync")
vinci:/usr/lib/python2.3/site-packages#
I don't know rsnapshot. For me this makes the packages unusable. I'm
attaching my configuration.
-- System Information:
Debian Release: 4.0
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-486
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Versions of packages rsnapshot depends on:
ii logrotate 3.7.1-3 Log rotation utility
ii perl 5.8.8-7 Larry Wall's Practical Extraction
ii rsync 2.6.9-2 fast remote file copy program (lik
Versions of packages rsnapshot recommends:
pn ssh <none> (no description available)
-- no debconf information
#################################################
# rsnapshot.conf - rsnapshot configuration file #
#################################################
# #
# PLEASE BE AWARE OF THE FOLLOWING RULES: #
# #
# This file requires tabs between elements #
# #
# Directories require a trailing slash: #
# right: /home/ #
# wrong: /home #
# #
#################################################
#######################
# CONFIG FILE VERSION #
#######################
config_version 1.2
###########################
# SNAPSHOT ROOT DIRECTORY #
###########################
# All snapshots will be stored under this root directory.
#
snapshot_root /var/cache/rsnapshot/
# If no_create_root is enabled, rsnapshot will not automatically create the
# snapshot_root directory. This is particularly useful if you are backing
# up to removable media, such as a FireWire or USB drive.
#
#no_create_root 1
#################################
# EXTERNAL PROGRAM DEPENDENCIES #
#################################
# LINUX USERS: Be sure to uncomment "cmd_cp". This gives you extra features.
# EVERYONE ELSE: Leave "cmd_cp" commented out for compatibility.
#
# Note: Linux users with gnu cp/coreutils version > 5.3, should leave
# cmd_cp commented out, since cp fails to create destination directories
# with a trailing slash for versions 5.3 or later.
#
# See the README file or the man page for more details.
#
cmd_cp /bin/cp
# uncomment this to use the rm program instead of the built-in perl routine.
#
cmd_rm /bin/rm
# rsync must be enabled for anything to work. This is the only command that
# must be enabled.
#
cmd_rsync /usr/bin/rsync
# Uncomment this to enable remote ssh backups over rsync.
#
cmd_ssh /usr/bin/ssh
# Comment this out to disable syslog support.
#
cmd_logger /usr/bin/logger
# Uncomment this to specify the path to "du" for disk usage checks.
# If you have an older version of "du", you may also want to check the
# "du_args" parameter below.
#
cmd_du /usr/bin/du
# Uncomment this to specify the path to rsnapshot-diff.
#
cmd_rsnapshot_diff /usr/bin/rsnapshot-diff
# Specify the path to a script (and any optional arguments) to run right
# before rsnapshot syncs files
#
#cmd_preexec /path/to/preexec/script
# Specify the path to a script (and any optional arguments) to run right
# after rsnapshot syncs files
#
#cmd_postexec /path/to/postexec/script
#########################################
# BACKUP INTERVALS #
# Must be unique and in ascending order #
# i.e. hourly, daily, weekly, etc. #
#########################################
# The interval names (hourly, daily, ...) are just names and have no influence
# on the length of the interval. The numbers set the number of snapshots to
# keep for each interval (hourly.0, hourly.1, ...).
# The length of the interval is set by the time between two executions of
# rsnapshot <interval name>, this is normally done via cron.
# Feel free to adapt the names, and the sample cron file under
/etc/cron.d/rsnapshot
# to your needs. The only requirement is that the intervals must be listed
# in ascending order. To activate just uncomment the entries.
interval hourly 6
interval daily 7
interval weekly 4
interval monthly 6
############################################
# GLOBAL OPTIONS #
# All are optional, with sensible defaults #
############################################
# Verbose level, 1 through 5.
# 1 Quiet Print fatal errors only
# 2 Default Print errors and warnings only
# 3 Verbose Show equivalent shell commands being executed
# 4 Extra Verbose Show extra verbose information
# 5 Debug mode Everything
#
verbose 2
# Same as "verbose" above, but controls the amount of data sent to the
# logfile, if one is being used. The default is 3.
#
loglevel 3
# If you enable this, data will be written to the file you specify. The
# amount of data written is controlled by the "loglevel" parameter.
#
logfile /var/log/rsnapshot.log
# If enabled, rsnapshot will write a lockfile to prevent two instances
# from running simultaneously (and messing up the snapshot_root).
# If you enable this, make sure the lockfile directory is not world
# writable. Otherwise anyone can prevent the program from running.
#
lockfile /var/run/rsnapshot.pid
# Default rsync args. All rsync commands have at least these options set.
#
#rsync_short_args -a
#rsync_long_args --delete --numeric-ids --relative --delete-excluded
# ssh has no args passed by default, but you can specify some here.
#
#ssh_args -p 22
# Default arguments for the "du" program (for disk space reporting).
# The GNU version of "du" is preferred. See the man page for more details.
# If your version of "du" doesn't support the -h flag, try -k flag instead.
#
#du_args -csh
# If this is enabled, rsync won't span filesystem partitions within a
# backup point. This essentially passes the -x option to rsync.
# The default is 0 (off).
#
#one_fs 0
# The include and exclude parameters, if enabled, simply get passed directly
# to rsync. If you have multiple include/exclude patterns, put each one on a
# seperate line. Please look up the --include and --exclude options in the
# rsync man page for more details.
#
#include ???
#include ???
#exclude ???
#exclude ???
# The include_file and exclude_file parameters, if enabled, simply get
# passed directly to rsync. Please look up the --include-from and
# --exclude-from options in the rsync man page for more details.
#
#include_file /path/to/include/file
#exclude_file /path/to/exclude/file
# If your version of rsync supports --link-dest, consider enable this.
# This is the best way to support special files (FIFOs, etc) cross-platform.
# The default is 0 (off).
# In Debian GNU cp is available which is superior to link_dest, so it should be
# commented out (disabled).
#
#link_dest 0
# When sync_first is enabled, it changes the default behaviour of rsnapshot.
# Normally, when rsnapshot is called with its lowest interval
# (i.e.: "rsnapshot hourly"), it will sync files AND rotate the lowest
# intervals. With sync_first enabled, "rsnapshot sync" handles the file sync,
# and all interval calls simply rotate files. See the man page for more
# details. The default is 0 (off).
#
sync_first 1
# If enabled, rsnapshot will move the oldest directory for each interval
# to [interval_name].delete, then it will remove the lockfile and delete
# that directory just before it exits. The default is 0 (off).
#
#use_lazy_deletes 0
###############################
### BACKUP POINTS / SCRIPTS ###
###############################
# LOCALHOST
#backup /home/ localhost/
#backup /etc/ localhost/
#backup /usr/local/ localhost/
#backup /var/log/rsnapshot localhost/
#backup /etc/passwd localhost/
#backup /home/foo/My Documents/ localhost/
#backup /foo/bar/ localhost/ one_fs=1, rsync_short_args=-urltvpog
#backup_script /usr/local/bin/backup_pgsql.sh localhost/postgres/
# EXAMPLE.COM
# for these backup points you will need ssh installed on the
# local machine as well as on the remote host
#
#backup [email protected]:/home/ example.com/
+rsync_long_args=--bwlimit=16,exclude=core
#backup [email protected]:/etc/ example.com/ exclude=mtab,exclude=core
backup r...@leo:/etc/ leo/
# CVS.SOURCEFORGE.NET
#backup_script /usr/local/bin/backup_rsnapshot_cvsroot.sh
rsnapshot.cvs.sourceforge.net/
# RSYNC.SAMBA.ORG
#backup rsync://rsync.samba.org/rsyncftp/ rsync.samba.org/rsyncftp/
--- End Message ---
--- Begin Message ---
Source: rsnapshot
Source-Version: 1.3.1-1
We believe that the bug you reported is fixed in the latest version of
rsnapshot, which is due to be installed in the Debian FTP archive:
rsnapshot_1.3.1-1.diff.gz
to main/r/rsnapshot/rsnapshot_1.3.1-1.diff.gz
rsnapshot_1.3.1-1.dsc
to main/r/rsnapshot/rsnapshot_1.3.1-1.dsc
rsnapshot_1.3.1-1_all.deb
to main/r/rsnapshot/rsnapshot_1.3.1-1_all.deb
rsnapshot_1.3.1.orig.tar.gz
to main/r/rsnapshot/rsnapshot_1.3.1.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
MJ Ray (Debian) <[email protected]> (supplier of updated rsnapshot package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 18 Nov 2009 00:05:53 +0000
Source: rsnapshot
Binary: rsnapshot
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Guillaume Delacour <[email protected]>
Changed-By: MJ Ray (Debian) <[email protected]>
Description:
rsnapshot - local and remote filesystem snapshot utility
Closes: 411317 413439 422262 496908 497928 500082 501992 504920 506218 506760
517657 548966
Changes:
rsnapshot (1.3.1-1) unstable; urgency=low
.
* New maintainer
* New upstream release (Closes: #548966, #501992, #517657, #413439)
* debian/control:
- Bump Standards-Version 3.8.3.0
- Homepage moved in extended description
- Recommend openssh-client instead of ssh (Closes: #422262)
- Depend on liblchown-perl (Closes: #497928)
- Build-Depends-Indep on openssh-client, to have ssh client path in
rsnapshot.conf at build time (Closes: #506760)
* debian/postrm: Add "set -e" to script
* debian/rules:
- remove warning ignorement ("-") in clean rule, test Makefile
- Bump debhelper compat version to 7 (dh_prep replacement)
- Delete unnecessary commented template based rules
* debian/copyright: Link to GPL-2
* debian/patches/01_logfile_rsnapshot_conf:
change commented /var/log/rsnapshot to /var/log/rsnapshot.log
in rsnapshot.conf (Closes: #506218)
* debian/patches/02_default_rsnapshot_conf_manpage:
point to /usr/share/doc/rsnapshot/examples/rsnapshot.conf.default.gz
instead of non-existent /etc/rsnapshot.conf.default file in manpage
(Closes: #411317)
* debian/patches/04_default_backup_dir:
Really set /var/cache/rsnapshot as default snapshot dir
* debian/patches/05_backup_pgsql:
Modify backup_pgsql.sh according Debian specific (Closes: #500082)
Thanks to Antony Gelberg
* debian/patches/06_fix_random_file_verify:
Fix some error on upstream example utils/random_file_verify.sh
* Add doc-base support to html doc (Closes: #504920)
* debian/lintian-overrides: add override on /var/cache/rsnapshot perms
(700 instead of 755)
* debian/README.Debian: add some explanations on rsnapshot behavior
(Closes: #496908)
Checksums-Sha1:
0aa14139c8ce21a1c542502be7fdd9c881f0c142 1233 rsnapshot_1.3.1-1.dsc
a3aa3560dc389e1b00155a5869558522c4a29e05 215806 rsnapshot_1.3.1.orig.tar.gz
bf114bf988501c2daf70ddeee4d9668e2560b249 7955 rsnapshot_1.3.1-1.diff.gz
d0328123ec151355964ee07e4472ccb1c026074c 140006 rsnapshot_1.3.1-1_all.deb
Checksums-Sha256:
9ad222a732bfc3133635ff9c4aa85fed2dce00a66845bd1219969793e26492f5 1233
rsnapshot_1.3.1-1.dsc
94b6c77e40628935f42a191bdc28ad93b1f132fde456ee76ee87763f1eddc75e 215806
rsnapshot_1.3.1.orig.tar.gz
fbbb5656404f965d7f7152f48c1b21ee4cead654c458dda33658c5ede385955e 7955
rsnapshot_1.3.1-1.diff.gz
fe0a681fcd611abd2b19643583ded5319571ff5237a545328bec9276f6049d5f 140006
rsnapshot_1.3.1-1_all.deb
Files:
4bbb742844a98c3746a11a759fe0f1dc 1233 utils optional rsnapshot_1.3.1-1.dsc
588f92995dcf60a6ea6df8d94a017e7e 215806 utils optional
rsnapshot_1.3.1.orig.tar.gz
79cd8102750fb8906477ba494285308b 7955 utils optional rsnapshot_1.3.1-1.diff.gz
fa3157168ac2be8169180ea48f0cf4c4 140006 utils optional
rsnapshot_1.3.1-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
iD8DBQFLgyMamUY5euFC5vQRAh4MAKC+FE1UGnFxuWM3LxmdWXZSu8ST2wCginHU
e6V3Y7BnC4A592lMTFa845k=
=XRpe
-----END PGP SIGNATURE-----
--- End Message ---