diff options
Diffstat (limited to 'squashfu.conf')
-rw-r--r-- | squashfu.conf | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/squashfu.conf b/squashfu.conf index 27e3b3d..fd53091 100644 --- a/squashfu.conf +++ b/squashfu.conf @@ -45,20 +45,19 @@ 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 simply a multi line quoted variable, so you'll need to either single -# quote or escape white spaces and special characters in your paths. +# The following defines what will and won't be backed up. These are +# simply Bash arrays and are interpreted as such. -INCLUDES=" +INCLUDES=( /home /etc /usr /var -" #end includes +) #end includes -EXCLUDES=" +EXCLUDES=( /lost+found /var/log -" #end excludes +) #end excludes |