Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
config: backup - exclude epggrab/*.sock files
  • Loading branch information
perexg committed Sep 16, 2014
1 parent 1a08146 commit a79cdee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config.c
Expand Up @@ -975,7 +975,9 @@ dobackup(const char *oldver)
{
char outfile[PATH_MAX], cwd[PATH_MAX];
const char *argv[] = {
"/usr/bin/tar", "cjf", outfile, "--exclude", "backup", ".", NULL
"/usr/bin/tar", "cjf", outfile,
"--exclude", "backup", "--exclude", "epggrab/*.sock",
".", NULL
};
const char *root = hts_settings_get_root();
char errtxt[128];
Expand Down

0 comments on commit a79cdee

Please sign in to comment.