files. This allows deja-dup to proceed by back-ups without filling up /tmp -- from RH Bugzilla.
24 lines
780 B
Plaintext
24 lines
780 B
Plaintext
$OpenBSD: patch-common_OperationBackup_vala,v 1.1 2013/01/21 08:23:30 ajacoutot Exp $
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=892063
|
|
|
|
--- common/OperationBackup.vala.orig Tue Aug 21 02:48:37 2012
|
|
+++ common/OperationBackup.vala Mon Jan 21 08:43:45 2013
|
|
@@ -116,11 +116,11 @@ public class OperationBackup : Operation
|
|
rv.append(Path.build_filename(dir, ".xsession-errors"));
|
|
}
|
|
|
|
- // Some problematic directories like /tmp and /proc should be left alone
|
|
- dir = Environment.get_tmp_dir();
|
|
- if (dir != null)
|
|
- rv.append(dir);
|
|
-
|
|
+ // Skip all of our temporary directories
|
|
+ foreach (var tempdir in DejaDup.get_tempdirs())
|
|
+ rv.append(tempdir);
|
|
+
|
|
+ // Skip kernel directories
|
|
rv.append("/proc");
|
|
rv.append("/sys");
|
|
|