aboutsummaryrefslogtreecommitdiffstats
path: root/squashfu.conf
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-12 20:29:40 -0500
committerDave Reisner <d@falconindy.com>2010-01-12 20:29:40 -0500
commitbed9e9725bba7d1b0853833247d79aa2fc8ad0df (patch)
tree530662ce0cf57ecb51832376bff8758492941c54 /squashfu.conf
parent757e28dde46cb4808d87502276d6cf2e30feb6b6 (diff)
downloadsquashfu-bed9e9725bba7d1b0853833247d79aa2fc8ad0df.tar.gz
Convert incls/excls to arrays....
Diffstat (limited to 'squashfu.conf')
-rw-r--r--squashfu.conf13
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