Re: [Nssbackup-team] [Question #234488]: lauching a task before backup

2013-09-18 Thread Jean-Peer Lorenz
Question #234488 on sbackup changed:
https://answers.launchpad.net/sbackup/+question/234488

Jean-Peer Lorenz proposed the following answer:
Well, the result/exit code of the scripts are checked against 0. If a script 
fails, the whole backup will fail/not start. Post-backup scripts are being run 
regardless of the 'exit' status of the backup so far. Here is the corresponding 
code snippet:
 
   def do_hook(self, hookname):
"""Runs scripts optionally defined in section 'hooks' of
configuration file. Currently defined are
* pre-backup - before preparation of backup starts
* post-backup - after completion and finishing of backup

"""
#LP #173490
import commands
hooks = None
if self.config.has_option('hooks', hookname):
hooks = str(self.config.get('hooks', hookname)).split(",")

if hooks is not None:
self.logger.info(_("Running of hooks: %s") % hookname)
for hook in hooks:
result = commands.getstatusoutput(hook)
if( 0 != result[0]):
raise exceptions.HookedScriptError(\
  "Hook %s returned error: '%s' (exit code=%s)" % (hookname,
result[1],
result[0]))


Please feel free to file an enhancement bug report which details the desired 
behaviour. Thanks.

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


Re: [Nssbackup-team] [Question #234488]: lauching a task before backup

2013-09-17 Thread Jean-Peer Lorenz
Question #234488 on sbackup changed:
https://answers.launchpad.net/sbackup/+question/234488

Jean-Peer Lorenz proposed the following answer:
In sbackup 0.11.5 and newer support for Pre/Post backup script hooks was
added:

  It is completely optional. To use it, please add following options to your 
configuration file:
  ...
  [hooks]
  pre-backup = 
  post-backup = 
  ...
  You only need to specify scripts that should run, just leave it out if not
  required! Please note, the script must be executable (chmod +x) and will be
  run with same privileges as your backup process. So, be careful!

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1181841] Re: Menubar {Help} is not accessible.

2013-06-26 Thread Jean-Peer Lorenz
Thank you for reporting this issue.

Could you please elaborate how/from where you installed sbackup? From
default repo, from PPA, from source...?

Thank you in advance.

P.S.: sbackup works on a per-file-level. It is not possible to store a
partition incl. allocation table into a compressed file by using
sbackup. What you can do is to store all files contained in a partition
into a backup (using sbackup). To restore it, you would need to re-
create a partition of according type and then to restore the files from
the backup snapshot to this partition.

HTH,
Jean-Peer


** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1181841

Title:
  Menubar {Help} is not accessible.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1181841/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1099906] Re: no log attached to mail report

2013-06-26 Thread Jean-Peer Lorenz
Thanks for reporting this issue.

Could you please check, what log level is set in your configuration?
Thank you.

** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1099906

Title:
  no log attached to mail report

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1099906/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1192570] Re: Support Polkit

2013-06-26 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: New => Confirmed

** Changed in: sbackup
   Importance: Undecided => Wishlist

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1192570

Title:
  Support Polkit

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1192570/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #230156]: Status of bug #1192570 changed to 'Confirmed' in sbackup

2013-06-26 Thread Jean-Peer Lorenz
Bug #1192570 status changed in sbackup:

New => Confirmed

https://bugs.launchpad.net/sbackup/+bug/1192570
"Support Polkit"

This bug is linked to #230156.
Policy Kit
https://answers.launchpad.net/sbackup/+question/230156

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1174124] Re: sbackup fails to start

2013-06-26 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Confirmed

** Changed in: sbackup
   Status: Triaged => Confirmed

** Summary changed:

- sbackup fails to start
+ Error when destination path is changed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1174124

Title:
  Error when destination path is changed

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1174124/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1186251] Re: Erreur configuration SBackup répertoire sauvegarde

2013-06-26 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1174124 ***
https://bugs.launchpad.net/bugs/1174124

** This bug has been marked a duplicate of bug 1174124
   Error when destination path is changed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1186251

Title:
  Erreur configuration SBackup répertoire sauvegarde

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1186251/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1189071] Re: sbackup errors and will not accept external drive for bkup destination

2013-06-26 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1174124 ***
https://bugs.launchpad.net/bugs/1174124

** This bug has been marked a duplicate of bug 1174124
   Error when destination path is changed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1189071

Title:
  sbackup errors and will not accept external drive for bkup destination

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1189071/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1188268] Re: error occurred when trying to change backup destination

2013-06-26 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1174124 ***
https://bugs.launchpad.net/bugs/1174124

** This bug has been marked a duplicate of bug 1174124
   Error when destination path is changed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1188268

Title:
  error occurred when trying to change backup destination

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1188268/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1179080] Re: sBackup unable to be configured for external media destination

2013-06-26 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1174124 ***
https://bugs.launchpad.net/bugs/1174124

** This bug has been marked a duplicate of bug 1174124
   sbackup fails to start

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1179080

Title:
  sBackup unable to be configured for external media destination

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1179080/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1179080] Re: sBackup unable to be configured for external media destination

2013-06-23 Thread Jean-Peer Lorenz
Thanks to all for reporting this issue. I'll look into it and fix it
asap! Sorry for any inconvinience.

@Alvin Ho (alfkh): maybe it is better to stick to a LTS version
(currently 12.04) with long term support and stability?

As a side note from the developer view: same holds for me...things are
working and suddenly stop with a new version of the distribution
(therefore I'm running Debian now). This takes a lot of effort to test
pre-release...Help is welcome...

Regards,
Jean-Peer

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1179080

Title:
  sBackup unable to be configured for external media destination

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1179080/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1179080] Re: sBackup unable to be configured for external media destination

2013-06-23 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.11
   Status: New => Confirmed

** Changed in: sbackup/0.11
   Importance: Undecided => High

** Changed in: sbackup
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1179080

Title:
  sBackup unable to be configured for external media destination

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1179080/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1175109] Re: Erreur

2013-06-23 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1174124 ***
https://bugs.launchpad.net/bugs/1174124

** This bug has been marked a duplicate of bug 1174124
   sbackup fails to start

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1175109

Title:
  Erreur

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1175109/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1174124] Re: sbackup fails to start

2013-06-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup
   Status: New => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1174124

Title:
  sbackup fails to start

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1174124/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1174124] Re: sbackup fails to start

2013-06-23 Thread Jean-Peer Lorenz
Thank you for reporting this issue. I'll look into it. At first sight it
looks like some new resp. changed behaviour due to the Python version
shipped with Ubuntu 13.04.

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.11
   Importance: Undecided => Low

** Changed in: sbackup
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1174124

Title:
  sbackup fails to start

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1174124/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1159705] Re: sbackup-config-gtk crashes with error 20

2013-06-23 Thread Jean-Peer Lorenz
Thank you for reporting this issue.

Bug is confirmed and I've committed a fix to lp:sbackup/0.11.

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.11
   Importance: Undecided => Low

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup
   Status: New => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1159705

Title:
  sbackup-config-gtk crashes with error 20

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1159705/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1190224] Re: sbackup 0.11.5 fails to write to ftp

2013-06-22 Thread Jean-Peer Lorenz
Fix pushed to lp:sbackup/0.11. I've restored to the situation as of
0.11.4.

** Changed in: sbackup
   Status: Confirmed => Fix Committed

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => High

** Changed in: sbackup
   Status: Fix Committed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1190224

Title:
  sbackup 0.11.5 fails to write to ftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1190224/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1190224] Re: sbackup 0.11.5 fails to write to ftp

2013-06-22 Thread Jean-Peer Lorenz
Thank you for reporting this issue. Confirmed. A regression was
introduced in 0.11.5.

** Changed in: sbackup
   Status: New => Confirmed

** Changed in: sbackup
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1190224

Title:
  sbackup 0.11.5 fails to write to ftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1190224/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


Re: [Nssbackup-team] [Question #220445]: Pass/Fail status in email

2013-04-10 Thread Jean-Peer Lorenz
Question #220445 on sbackup changed:
https://answers.launchpad.net/sbackup/+question/220445

Status: Open => Answered

Jean-Peer Lorenz proposed the following answer:
Hello Raphael,

thank you for using sbackup and your feedback!

Sorry for not answering yet. Yes, I am looking at this and I will
consider a fix for this in the next release. However, at the moment I am
quite short on time and cannot promise anything. Any help for sbackup is
welcome for example bug triaging, documentation, support and of course
patches and packaging.

Thank you and kind regards,

Jean-Peer.

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 988219] Re: Cannot terminate sbackup (unhandled exception in case of not implemented 'attach_to_status_icon')

2013-01-28 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/988219

Title:
  Cannot terminate sbackup (unhandled exception in case of not
  implemented 'attach_to_status_icon')

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/988219/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 768080] Re: incremental snapshots store more files than needed

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/768080

Title:
  incremental snapshots store more files than needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/768080/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000171] Re: [Feature request] make it backwards compatible because upgrade-backups is incredibly slow and not reliable

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000171

Title:
  [Feature request] make it backwards compatible because upgrade-backups
  is incredibly slow and not reliable

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000171/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1097465] Re: Regular expressions defined in default configuration can be improved

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1097465

Title:
  Regular expressions defined in default configuration can be improved

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1097465/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 330680] Re: SBackup fails if target path contains #

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/330680

Title:
  SBackup fails if target path contains #

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/330680/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 173490] Re: Pre/Post backup script hooks

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/173490

Title:
  Pre/Post backup script hooks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/173490/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 670646] Re: sbackup-gtk crashes while starting: invalid literal for int()

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/670646

Title:
  sbackup-gtk crashes while starting: invalid literal for int()

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/670646/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 918099] Re: System menu names should include 'admin' or similar

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/918099

Title:
  System menu names should include 'admin' or similar

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/918099/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 888367] Re: sbackup crashes when trying to add a directory to backup

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/888367

Title:
  sbackup crashes when trying to add a directory to backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/888367/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 875634] Re: sbackup's tar very slow due to erroneous backup size calculation

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/875634

Title:
  sbackup's tar very slow due to erroneous backup size calculation

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/875634/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 980786] Re: Don't complain about non-accessable excluded files

2013-01-23 Thread Jean-Peer Lorenz
** Changed in: sbackup/0.11
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/980786

Title:
  Don't complain about non-accessable excluded files

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/980786/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #129584]: Status of bug #1000171 changed to 'Fix Released' in 0.11

2013-01-23 Thread Jean-Peer Lorenz
Bug #1000171 status changed in 0.11:

Fix Committed => Fix Released

https://bugs.launchpad.net/sbackup/0.11/+bug/1000171
"[Feature request] make it backwards compatible because upgrade-backups is 
incredibly slow and not reliable"

This bug is linked to #129584.
Snapshot version not supported
https://answers.launchpad.net/sbackup/+question/129584

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 113864] Re: Display password in cleartext

2013-01-10 Thread Jean-Peer Lorenz
This should be fixed in sbackup series 0.11.4 and newer. Please feel
free to re-open the issue if you want to comment or if the issue is
still valid. Thanks.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/113864

Title:
  Display password in cleartext

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/113864/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 609814] Re: Exception when selecting the "Use recommended settings": NoOptionError

2013-01-10 Thread Jean-Peer Lorenz
** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/609814

Title:
  Exception when selecting the "Use recommended settings": NoOptionError

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/609814/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 980786] Re: Don't complain about non-accessable excluded files

2013-01-10 Thread Jean-Peer Lorenz
> How could this be solved correctly? Rules with a trailing / must only
apply to directories but to know about this, you need to call stat().

I agree and don't see another way than modifying the regular
expressions.

I've opened a separate bug to handle this isse and commited a fix:
Regular expressions defined in default configuration can be improved (LP
#1097465). The default RegExs as of now read:

+self._regex_excludes = "^/home/[^/]+?/\.gvfs(/|$),"\
+   "^/home/[^/]+?/\.thumbnails(/|$),"\
+   "^/home/[^/]+?/\..+/[tT]rash(/|$),"\
+   "^/home/[^/]+?/\.cache(/|$),"\
+   "^/home/[^/]+?/\..+/[cC]ache(/|$),"\
+   "^/home/[^/]+?/\..+/lock(/|$),"\
"~$"

Using this expressions and the fix pushed for this bug (LP #980786)
should remove all remaining unwanted warnings and errors from your log.

regards,
jean-peer

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/980786

Title:
  Don't complain about non-accessable excluded files

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/980786/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000171] Re: [Feature request] make it backwards compatible because upgrade-backups is incredibly slow and not reliable

2013-01-10 Thread Jean-Peer Lorenz
I've finally removed support for upgrade-backups entirely. Rather, I've
added a restore utility which provides legacy support using the 0.10.5
algorithm. The command must be executed from terminal, i.e. no graphical
desktop icon will be provided. It can be used with command line
interface (cli) and also with GTK gui.

Syntax:

'sbackup-legacy-restore BACKUP_PATH FILE_OR_DIR_TO_RESTORE [TARGET_DIR]'

or for more ease of use with gui:

'sbackup-legacy-restore --gui'.

** Changed in: sbackup/0.11
   Status: Won't Fix => Fix Committed

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000171

Title:
  [Feature request] make it backwards compatible because upgrade-backups
  is incredibly slow and not reliable

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000171/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #129584]: Status of bug #1000171 changed to 'Fix Committed' in 0.11

2013-01-10 Thread Jean-Peer Lorenz
Bug #1000171 status changed in 0.11:

Won't Fix => Fix Committed

https://bugs.launchpad.net/sbackup/0.11/+bug/1000171
"[Feature request] make it backwards compatible because upgrade-backups is 
incredibly slow and not reliable"

This bug is linked to #129584.
Snapshot version not supported
https://answers.launchpad.net/sbackup/+question/129584

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1074393] Re: sbackup error "need more that 1 value to unpack"

2013-01-10 Thread Jean-Peer Lorenz
Hi Terry,

please set your log level to 'Debug' and post such debug log if the
error encounters again. Currently, I've no idea were the error comes
from. Thanks.

** Changed in: sbackup
   Status: Invalid => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1074393

Title:
  sbackup error "need more that 1 value to unpack"

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1074393/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1097465] [NEW] Regular expressions defined in default configuration can be improved

2013-01-08 Thread Jean-Peer Lorenz
Public bug reported:

Found in sbackup 0.11.4

The regular expressions for file exclusions defined in the default
configuration can and should be improved:

* do not exclude specific types of files e.g. mp3, avi etc.
* fix regex for .gvfs, trash, cache etc. Currently these  do not apply to 
'top-level' directories because of their trailing slash (/)
* add a default regex for lock directories (e.g. $HOME/.mozilla/lock)
* add a default regex for $HOME/.cache directory
* improve regex which define directories in /home/ by using ^ (must start with 
/home!)

** Affects: sbackup
 Importance: Undecided
 Status: Triaged

** Affects: sbackup/0.11
 Importance: Undecided
 Status: Fix Committed

** Affects: sbackup/trunk
 Importance: Undecided
 Status: Triaged

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
   Status: New

** Changed in: sbackup/trunk
   Status: New => Triaged

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/0.11
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1097465

Title:
  Regular expressions defined in default configuration can be improved

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1097465/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 773815] Re: package sbackup 0.11.4-0ubuntu2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2013-01-05 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Does this also
happens when upgragding to more recent distributions (12.10 or 13.04)?
Thanks for any additional information - otherwise I'll close this bug.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/773815

Title:
  package sbackup 0.11.4-0ubuntu2 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/773815/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 384359] Re: Simple Backup Utility may prompt user for password to remote server but not remember it

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/384359

Title:
  Simple Backup Utility may prompt user for password to remote server
  but not remember it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/384359/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 249292] Re: Exclude regex for Trash does not include location used in Gnome >=2.22

2013-01-03 Thread Jean-Peer Lorenz
The issue was fixed in sbackup series 0.11.x
Please upgrade. Thank you.

** Changed in: sbackup (Ubuntu)
   Status: Fix Committed => Fix Released

** Changed in: sbackup/0.10
   Status: Confirmed => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/249292

Title:
  Exclude regex for Trash does not include location used in Gnome >=2.22

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/249292/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 384362] Re: No clear way to enter a password containing the '@' character in Simple Backup Utility

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/384362

Title:
  No clear way to enter a password containing the '@' character in
  Simple Backup Utility

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/384362/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 126280] Re: sbackup time option "simple" time is obscure

2013-01-03 Thread Jean-Peer Lorenz
The issue was fixed in sbackup series 0.11.x
Please upgrade. Thank you.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/126280

Title:
  sbackup time option "simple" time is obscure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/126280/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 336240] Re: sbackup 0.10.5 ignores maxsize setting

2013-01-03 Thread Jean-Peer Lorenz
The issue was fixed in sbackup series 0.11.x
Please upgrade. Thank you.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/336240

Title:
  sbackup 0.10.5 ignores maxsize setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/336240/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 116076] Re: sbackup using remote target fails ungracefully over wireless connection (with gnome-vfs-modules-CRITICAL error)

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/116076

Title:
  sbackup using remote target fails ungracefully over wireless
  connection (with gnome-vfs-modules-CRITICAL error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/116076/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 146618] Re: The file size limitation should not be a recommendation

2013-01-03 Thread Jean-Peer Lorenz
The issue was fixed in sbackup series 0.11.x
Please upgrade. Thank you.

** Changed in: sbackup (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/146618

Title:
  The file size limitation should not be a recommendation

To manage notifications about this bug go to:
https://bugs.launchpad.net/nssbackup/+bug/146618/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 223073] Re: Simple backup through ssh crashes at startup

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/223073

Title:
  Simple backup through ssh crashes at startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/223073/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 661746] Re: Error in stream protocol: End of stream

2013-01-03 Thread Jean-Peer Lorenz
I'm setting the status of this report to confirmed since it affects
multiple users.

Unfortunately, I was not able to reproduce the error so far.

@cuby: Would you mind to post your full log file (debug mode) please?

I start to think it is related to some timing issue...help in tracking
this down is *highly* appreciated. Thanks.

** Changed in: sbackup (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/661746

Title:
  Error in stream protocol: End of stream

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/661746/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 675298] Re: sbackup doesn't honor regex excludes on full backup

2013-01-03 Thread Jean-Peer Lorenz
I am closing this report since it is fixed in latest version of sbackup
0.11.x. Please upgrade to the latest version.

** Changed in: sbackup (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/675298

Title:
  sbackup doesn't honor regex excludes on full backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/675298/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 336452] Re: if you add file or directory in include tab, after having changed some of the entries, you have to save and the reload sbackup

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/336452

Title:
  if you add file or directory in include tab, after having changed some
  of the entries,  you have to save and the reload sbackup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/336452/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 357498] Re: sbackup doesn't remove all Regex Exclude rules

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/357498

Title:
  sbackup doesn't remove all Regex Exclude rules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/357498/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 345949] Re: Single directory exclude not working if backing up root

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/345949

Title:
  Single directory exclude not working if backing up root

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/345949/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 407280] Re: too many incremental backups are deleted

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue. Can you please
test whether the problem still exists when using the latest version of
sbackup 0.11.4? Thank you so much.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/407280

Title:
  too many incremental backups are deleted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/407280/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 330680] Re: SBackup fails if target path contains #

2013-01-03 Thread Jean-Peer Lorenz
A fix for this issue was pushed into repository series 0.11.

** Changed in: sbackup (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/330680

Title:
  SBackup fails if target path contains #

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/330680/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 898271] Re: sbackup was configurated but didn't do the backup. It display that the destination folder don't exist

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting your problem.

Did you checked the permissions of your destination folder? Does the
problem still exists?

Thanks for further information in case your problem is still valid.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/898271

Title:
  sbackup was configurated but didn't do the backup. It display that the
  destination folder don't exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/898271/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 906044] Re: admin terminal opened with sbackup and blocked

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue.

Please note, the "error message" you have encountered is a warning and
can be safely ignored. In case there are more issues please provide more
comprehensive information.

Thank you in advance.

** Changed in: sbackup (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/906044

Title:
  admin terminal opened with sbackup and blocked

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sbackup/+bug/906044/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 290237] Re: No backup created when allowing GNOME to prompt for password

2013-01-03 Thread Jean-Peer Lorenz
** Changed in: sbackup/trunk
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/290237

Title:
  No backup created when allowing GNOME to prompt for password

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/290237/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 955602] Re: Different backup jobs can not be started individually

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
   Status: Triaged

** Changed in: sbackup/0.11
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/955602

Title:
  Different backup jobs can not be started individually

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/955602/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 888367] Re: sbackup crashes when trying to add a directory to backup

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
   Status: Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/888367

Title:
  sbackup crashes when trying to add a directory to backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/888367/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 729103] Re: Add option to E-mail Reports only on warnings or errors

2013-01-03 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: Confirmed => Triaged

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
   Status: Triaged

** Changed in: sbackup/0.11
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/729103

Title:
  Add option to E-mail Reports only on warnings or errors

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/729103/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 568384] Re: sbackup uses too much memory

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
 Assignee: Jean-Peer Lorenz (peer.loz)
   Status: In Progress

** Changed in: sbackup/0.11
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/568384

Title:
  sbackup uses too much memory

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/568384/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 632605] Re: Error while closing snapshot file over FTP (was: Incremental backups fail but not full backups)

2013-01-03 Thread Jean-Peer Lorenz
** Changed in: sbackup/trunk
   Status: In Progress => Triaged

** Changed in: sbackup/trunk
   Importance: Low => Medium

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to nssbackup.
https://bugs.launchpad.net/bugs/632605

Title:
  Error while closing snapshot file over FTP (was: Incremental backups
  fail but not full backups)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nssbackup/+bug/632605/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 300484] Re: The Version Numbering isn't correct

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
   Status: Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => Invalid

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/0.10
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/300484

Title:
  The Version Numbering isn't correct

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/300484/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 345379] Re: [Feature request] Scheduled backups for regular users and distinct profiles

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
   Status: In Progress

** Changed in: sbackup/0.10
   Status: New => Won't Fix

** Changed in: sbackup/0.11
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to nssbackup.
https://bugs.launchpad.net/bugs/345379

Title:
  [Feature request] Scheduled backups for regular users and distinct
  profiles

To manage notifications about this bug go to:
https://bugs.launchpad.net/nssbackup/+bug/345379/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 567328] Re: [Feature request] Sort files by name in restore dialog

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
   Status: Confirmed

** Changed in: sbackup/0.11
   Status: New => Won't Fix

** Changed in: sbackup/0.10
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup in Ubuntu.
https://bugs.launchpad.net/bugs/567328

Title:
  [Feature request] Sort files by name in restore dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/567328/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 294104] Re: Access denied while the device is accessible

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: High
 Assignee: Martin Schaaf (mascha)
   Status: Fix Committed

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/0.10
   Importance: Undecided => High

** Changed in: sbackup/trunk
   Status: Fix Committed => Invalid

** Changed in: sbackup/trunk
   Importance: High => Undecided

** Changed in: sbackup/trunk
 Assignee: Martin Schaaf (mascha) => (unassigned)

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/294104

Title:
  Access denied while the device is accessible

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/294104/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 300167] Re: Files in top directory not backed up with default maxsize=-1

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
 Assignee: Martin Schaaf (mascha)
   Status: Fix Committed

** Changed in: sbackup/trunk
 Assignee: Martin Schaaf (mascha) => (unassigned)

** Changed in: sbackup/trunk
   Status: Fix Committed => Invalid

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/0.10
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/300167

Title:
  Files in top directory not backed up with default maxsize=-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/300167/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 290237] Re: No backup created when allowing GNOME to prompt for password

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
 Assignee: Martin Schaaf (mascha)
   Status: Fix Committed

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => New

** Changed in: sbackup/trunk
 Assignee: Martin Schaaf (mascha) => (unassigned)

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/290237

Title:
  No backup created when allowing GNOME to prompt for password

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/290237/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 290265] Re: Simple Backup crashs silently if an io error occurs while doing backup and restoration.

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/0.10
   Importance: Undecided => Medium

** Changed in: sbackup
   Status: Fix Committed => New

** Also affects: sbackup/trunk
   Importance: Undecided
   Status: New

** Changed in: sbackup/trunk
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/290265

Title:
  Simple Backup crashs silently if an io error occurs while doing backup
  and restoration.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/290265/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 258542] Re: Excluding files by type excludes more than expected

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
 Assignee: Martin Schaaf (mascha)
   Status: Fix Committed

** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Changed in: sbackup/trunk
 Assignee: Martin Schaaf (mascha) => (unassigned)

** Changed in: sbackup/0.11
   Status: New => Fix Released

** Changed in: sbackup/trunk
   Status: Fix Committed => Fix Released

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to nssbackup.
https://bugs.launchpad.net/bugs/258542

Title:
  Excluding files by type excludes more than expected

To manage notifications about this bug go to:
https://bugs.launchpad.net/nssbackup/+bug/258542/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000171] Re: sbackup-upgrade-backups incredibly slow

2013-01-03 Thread Jean-Peer Lorenz
Hello Francesco,

thank you for using sbackup and reporting this issue!

You are absolutely right! Performance of the upgrading process is a
total nightmare and, also, touching existing snapshots is a BAD idea.
Therefore, upgrading is highly not recommended.

I am working on making the restore backwards compatible and there is
basic support for reading and writing arbitrary snapshot versions in my
current development branch. Unfortunately, I'm short on time and cannot
tell any release date when this will be finished. Help is highly
appreciated.

Thank you for your help and sorry for any inconvenience!

Best regards,
Jean-Peer


** Changed in: sbackup/0.11
   Status: New => Won't Fix

** Changed in: sbackup/0.11
   Importance: Undecided => High

** Changed in: sbackup/trunk
   Status: New => Triaged

** Changed in: sbackup/trunk
   Importance: Undecided => Wishlist

** Summary changed:

- sbackup-upgrade-backups incredibly slow
+ sbackup-upgrade-backups incredibly slow/make it backwars compatible

** Summary changed:

- sbackup-upgrade-backups incredibly slow/make it backwars compatible
+ [Feature request] make it backwards compatiblesbackup-upgrade-backups 
incredibly slow

** Summary changed:

- [Feature request] make it backwards compatiblesbackup-upgrade-backups 
incredibly slow
+ [Feature request] make it backwards compatible because upgrade-backups is 
incredibly slow and not reliable

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000171

Title:
  [Feature request] make it backwards compatible because upgrade-backups
  is incredibly slow and not reliable

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000171/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000896] Re: Upgrade of snapshot not possible due to problem with files.snar (Errno 2 - file not found) + SOLUTION

2013-01-03 Thread Jean-Peer Lorenz
*** This bug is a duplicate of bug 1000171 ***
https://bugs.launchpad.net/bugs/1000171

** This bug has been marked a duplicate of bug 1000171
   [Feature request] make it backwards compatible because upgrade-backups is 
incredibly slow and not reliable

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000896

Title:
  Upgrade of snapshot not possible due to problem with files.snar (Errno
  2 - file not found) + SOLUTION

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000896/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #129584]: Status of bug #1000171 changed to 'Triaged' in trunk

2013-01-03 Thread Jean-Peer Lorenz
Bug #1000171 status changed in trunk:

New => Triaged

https://bugs.launchpad.net/sbackup/trunk/+bug/1000171
"sbackup-upgrade-backups incredibly slow"

This bug is linked to #129584.
Snapshot version not supported
https://answers.launchpad.net/sbackup/+question/129584

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #129584]: Status of bug #1000171 changed to 'Won't Fix' in 0.11

2013-01-03 Thread Jean-Peer Lorenz
Bug #1000171 status changed in 0.11:

New => Won't Fix

https://bugs.launchpad.net/sbackup/0.11/+bug/1000171
"sbackup-upgrade-backups incredibly slow"

This bug is linked to #129584.
Snapshot version not supported
https://answers.launchpad.net/sbackup/+question/129584

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 922487] Re: "Broken pipe" when trying to restore a directory

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue.

In order to track down the cause of your problem please answer following
questions:

* What version of sbackup do you use? Installed from?
* What distribution do you use?
* Do local backups work?
* Do you run as superuser or regular user?
* Can you ssh from a terminal to the other box?

In addition, it would be very helpful if you could post a full log
(debug mode) and your configuration file. Please remove any private
information before posting here.

Thanks in advance.


** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/922487

Title:
  "Broken pipe" when trying to restore a directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/922487/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1008599] Re: backup starts but doesn't backup anything

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue.

In order to track down the cause of your problem please answer following
questions:

* What version of sbackup do you use? Installed from?
* What distribution do you use?
* Do local backups work?
* Do you run as superuser or regular user?
* Can you access the nfs share from a terminal or using a file manager?

In addition, it would be very helpful if you could post a full log
(debug mode) and your configuration file. Please remove any private
information before posting here.

Thanks in advance.


** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1008599

Title:
  backup starts but doesn't backup anything

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1008599/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 980786] Re: Don't complain about non-accessable excluded files

2013-01-03 Thread Jean-Peer Lorenz
Thanks for this report and your suggestion. I've modified the order of checks. 
This should fix your issue.
Best regards.

** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
   Status: New

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => Low

** Changed in: sbackup/trunk
   Status: New => Triaged

** Changed in: sbackup/trunk
   Importance: Undecided => Low

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/980786

Title:
  Don't complain about non-accessable excluded files

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/980786/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 988729] Re: simple back up issues error before finishing and then hangs

2013-01-03 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue.

In order to track down the cause of your problem please answer following
questions:

* What version of sbackup do you use? Installed from?
* What distribution do you use?
* Do backups work basically?
* Do you run as superuser or regular user?

In addition, it would be very helpful if you could post a full log
(debug mode) and your configuration file. Please remove any private
information before posting here.

Thanks in advance.

** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/988729

Title:
  simple back up issues error before finishing and then hangs

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/988729/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 918099] Re: System menu names should include 'admin' or similar

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
   Status: Fix Committed

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/918099

Title:
  System menu names should include 'admin' or similar

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/918099/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 173490] Re: Pre/Post backup script hooks

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Wishlist
   Status: Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => Wishlist

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/173490

Title:
  Pre/Post backup script hooks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/173490/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 670646] Re: sbackup-gtk crashes while starting: invalid literal for int()

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Low
   Status: Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => Low

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/670646

Title:
  sbackup-gtk crashes while starting: invalid literal for int()

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/670646/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 768080] Re: incremental snapshots store more files than needed

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
   Status: Fix Committed

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

** Changed in: sbackup/0.11
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/768080

Title:
  incremental snapshots store more files than needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/768080/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 875634] Re: sbackup's tar very slow due to erroneous backup size calculation

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
   Status: Fix Committed

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/875634

Title:
  sbackup's tar very slow due to erroneous backup size calculation

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/875634/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 988219] Re: Cannot terminate sbackup (unhandled exception in case of not implemented 'attach_to_status_icon')

2013-01-03 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
   Status: Fix Committed

** Changed in: sbackup/trunk
Milestone: 0.11.5 => None

** Changed in: sbackup/0.11
Milestone: None => 0.11.5

** Changed in: sbackup/0.11
   Importance: Undecided => Medium

** Changed in: sbackup/0.11
   Status: New => Fix Committed

** Changed in: sbackup/trunk
   Status: Fix Committed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/988219

Title:
  Cannot terminate sbackup (unhandled exception in case of not
  implemented 'attach_to_status_icon')

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/988219/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000171] Re: sbackup-upgrade-backups incredibly slow

2013-01-02 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.11
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000171

Title:
  sbackup-upgrade-backups incredibly slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000171/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000896] Re: Upgrade of snapshot not possible due to problem with files.snar (Errno 2 - file not found) + SOLUTION

2013-01-02 Thread Jean-Peer Lorenz
Hello Thomas,

thank you for using sbackup and reporting this issue!

You are absolutely right! Touching existing snapshots is a BAD idea and
upgrading them is highly not recommended.

> PLEASE MAKE THE RESTORE BACKWARDS COMPATIBLE!!!
I am working on this and there is basic support for reading and writing 
arbitrary snapshot versions in my current development branch. Unfortunately, 
I'm short on time and cannot tell any release date when this will be finished. 
Help is highly appreciated.

Thank you for your help and sorry for any inconvenience!

Best regards,
Jean-Peer

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000896

Title:
  Upgrade of snapshot not possible due to problem with files.snar (Errno
  2 - file not found) + SOLUTION

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000896/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1000896] Re: Upgrade of snapshot not possible due to problem with files.snar (Errno 2 - file not found) + SOLUTION

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Importance: Undecided => High

** Changed in: sbackup
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1000896

Title:
  Upgrade of snapshot not possible due to problem with files.snar (Errno
  2 - file not found) + SOLUTION

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1000896/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 1033644] Re: Fail during start Sbackup Full in Sbackup-config

2013-01-02 Thread Jean-Peer Lorenz
Thank you for using sbackup and reporting this issue!

In order to track down your problem please post a full log (debug mode)
recorded when the error happens. Please also answer following questions:

* do you run as superuser or regular user?
* do you use scheduled backups?
* does manual snapshot creation work for you?
* what type of target do you use? SMB, local internal harddisk, USB drive...?

Thank you very much in advance!

** Changed in: sbackup
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/1033644

Title:
  Fail during start Sbackup Full in Sbackup-config

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/1033644/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 300489] Re: Backup restore crashed while restoring

2013-01-02 Thread Jean-Peer Lorenz
** Also affects: sbackup/0.10
   Importance: Undecided
   Status: New

** Also affects: sbackup/trunk
   Importance: Medium
 Assignee: Martin Schaaf (mascha)
   Status: Fix Committed

** Changed in: sbackup/0.10
   Status: New => Fix Committed

** Changed in: sbackup/0.10
   Importance: Undecided => Medium

** Changed in: sbackup/trunk
 Assignee: Martin Schaaf (mascha) => (unassigned)

** Changed in: sbackup/trunk
   Importance: Medium => Undecided

** Changed in: sbackup/trunk
   Status: Fix Committed => Invalid

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/300489

Title:
  Backup restore crashed while restoring

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/300489/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Question #129584]: Status of bug #1000896 changed to 'Won't Fix' in sbackup

2013-01-02 Thread Jean-Peer Lorenz
Bug #1000896 status changed in sbackup:

New => Won't Fix

https://bugs.launchpad.net/sbackup/+bug/1000896
"Upgrade of snapshot not possible due to problem with files.snar (Errno 2 - 
file not found) + SOLUTION"

This bug is linked to #129584.
Snapshot version not supported
https://answers.launchpad.net/sbackup/+question/129584

-- 
You received this question notification because you are a member of
Simple Backup Maintainers, which is an answer contact for sbackup.

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 311967] Re: sbackupd mistreats the hostname part of the backup directory

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup/trunk
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/311967

Title:
  sbackupd mistreats the hostname part of the backup directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/311967/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 662404] Re: wrong base for incremental backup

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/662404

Title:
  wrong base for incremental backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/662404/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 955602] Re: Different backup jobs can not be started individually

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/955602

Title:
  Different backup jobs can not be started individually

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/955602/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 988219] Re: Cannot terminate sbackup

2013-01-02 Thread Jean-Peer Lorenz
A fix for this issue was pushed to repository (sbackup/0.11):

revno: 245
committer: Jean-Peer Lorenz 
branch nick: 0.11
timestamp: Wed 2012-12-19 20:45:07 +0100
message:
  * added exception handling in case of not implemented 'attach_to_status_icon'
method (e.g. Debian Wheezy)

Please feel free to re-open the bug if it is still valid. Thanks.

** Summary changed:

- Cannot terminate sbackup
+ Cannot terminate sbackup (unhandled exception in case of not implemented 
'attach_to_status_icon')

** Changed in: sbackup
   Importance: Undecided => Medium

** Changed in: sbackup
Milestone: None => 0.11.5

** Changed in: sbackup
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/988219

Title:
  Cannot terminate sbackup (unhandled exception in case of not
  implemented 'attach_to_status_icon')

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/988219/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 455377] Re: sbackup crashes at backup -->Zombie

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup/trunk
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/455377

Title:
  sbackup crashes at backup -->Zombie

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/455377/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 622496] Re: Config might get lost when starting config-gui while destination drive is not present

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to nssbackup.
https://bugs.launchpad.net/bugs/622496

Title:
  Config might get lost when starting config-gui while destination drive
  is not present

To manage notifications about this bug go to:
https://bugs.launchpad.net/nssbackup/+bug/622496/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 670646] Re: sbackup-gtk crashes while starting: invalid literal for int()

2013-01-02 Thread Jean-Peer Lorenz
Fix for this issue was pushed to repository (sbackup/0.11): ignore
ValueError when parsing port.

** Changed in: sbackup
   Status: In Progress => Fix Committed

** Changed in: sbackup
Milestone: None => 0.11.5

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/670646

Title:
  sbackup-gtk crashes while starting: invalid literal for int()

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/670646/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 888367] Re: sbackup crashes when trying to add a directory to backup

2013-01-02 Thread Jean-Peer Lorenz
I've pushed a possible fix for this to the repository (sbackup/0.11):
avoid using the ConfigParser interpolation feature when checking added
directories. Hopefully this will fix the issue, I was not able to
reproduce the bug so far.

Please feel free to re-open this bug if the issue is still valid!

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/888367

Title:
  sbackup crashes when trying to add a directory to backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/888367/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


[Nssbackup-team] [Bug 888367] Re: sbackup crashes when trying to add a directory to backup

2013-01-02 Thread Jean-Peer Lorenz
** Changed in: sbackup
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Simple
Backup Maintainers, which is subscribed to sbackup.
https://bugs.launchpad.net/bugs/888367

Title:
  sbackup crashes when trying to add a directory to backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/sbackup/+bug/888367/+subscriptions

___
Mailing list: https://launchpad.net/~nssbackup-team
Post to : nssbackup-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~nssbackup-team
More help   : https://help.launchpad.net/ListHelp


  1   2   3   4   5   6   7   8   9   10   >