From bed9e9725bba7d1b0853833247d79aa2fc8ad0df Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 12 Jan 2010 20:29:40 -0500 Subject: Convert incls/excls to arrays.... --- squashfu.conf | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'squashfu.conf') 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 -- cgit v1.2.3