diff options
Diffstat (limited to 'squashfu.conf')
-rw-r--r-- | squashfu.conf | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/squashfu.conf b/squashfu.conf index 9b3affb..27e3b3d 100644 --- a/squashfu.conf +++ b/squashfu.conf @@ -45,19 +45,20 @@ MAX_BINS=10 # not be true incrementals. See 'man rsync' for more info. RSYNC_OPTS=("-Rua" "--delete" "--stats") -# The following defines what will and won't be backed up. The format -# is that of a heredoc. Multiple include and exclude heredocs are NOT -# supported, although this config can be overridden in a separate config -# file with --config or -c.. +# The following defines what will and won't be backed up. The format +# is simply a multi line quoted variable, so you'll need to either single +# quote or escape white spaces and special characters in your paths. -<<INCLUDES +INCLUDES=" /home +/etc /usr /var -INCLUDES +" #end includes -<<EXCLUDES +EXCLUDES=" /lost+found -EXCLUDES +/var/log +" #end excludes |