From: Jaroslav Kysela Date: Wed, 24 Jan 2018 10:36:40 +0000 (+0100) Subject: config: don't backup imagecache meta and data, issue #4887 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9c2a86fe2069680d6678ff49289ecf4445de6c1;p=thirdparty%2Ftvheadend.git config: don't backup imagecache meta and data, issue #4887 From: Sebastian K. --- diff --git a/src/config.c b/src/config.c index 6609abd65..b66f5a329 100644 --- a/src/config.c +++ b/src/config.c @@ -1468,8 +1468,11 @@ dobackup(const char *oldver) char outfile[PATH_MAX], cwd[PATH_MAX]; const char *argv[] = { "/usr/bin/tar", "cjf", outfile, - "--exclude", "backup", "--exclude", "epggrab/*.sock", + "--exclude", "backup", + "--exclude", "epggrab/*.sock", "--exclude", "timeshift/buffer", + "--exclude", "imagecache/meta", + "--exclude", "imagecache/data", ".", NULL }; const char *root = hts_settings_get_root();