aboutsummaryrefslogtreecommitdiffstats
path: root/squashfu.conf
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-12 20:25:31 -0500
committerDave Reisner <d@falconindy.com>2010-01-12 20:25:31 -0500
commit757e28dde46cb4808d87502276d6cf2e30feb6b6 (patch)
tree366d53f09872eeb2d8e8d7f1f54827ef94302be8 /squashfu.conf
parenta306c1e1fa3c7b62059f25522f61629a18d9e79c (diff)
downloadsquashfu-757e28dde46cb4808d87502276d6cf2e30feb6b6.tar.gz
Convert include/exclude heredocs to simple variables. I'm sure I'll end up changing these to arrays sooner or later
Diffstat (limited to 'squashfu.conf')
-rw-r--r--squashfu.conf17
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