diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-09 11:59:44 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-09 11:59:44 -0500 |
commit | d316136d6948e16fa75acceba87d348dcf4a69d2 (patch) | |
tree | 7c6998dc423d1ed3bb74d982a02cc3fe4d8ea54e | |
parent | 5c4673ccc7ccbc8adb0e75dcb24886ea0ce7056d (diff) | |
download | squashfu-d316136d6948e16fa75acceba87d348dcf4a69d2.tar.gz |
Define locations of important programs that we don't want tainted by userspace
-rw-r--r-- | squashfu.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/squashfu.conf b/squashfu.conf index 58fc66f..1e15af5 100644 --- a/squashfu.conf +++ b/squashfu.conf @@ -1,5 +1,13 @@ # Config file for Super Deluxe SquashFu Backup Express +# Define important program locations to ensure userspace doesn't +# taint our invocation. +MOUNT=`which mount` +UMOUNT=`which umount` +MKSQUASHFS=`which mksquashfs` +RSYNC=`which rsync` + + # Show debugging information. This might be useful in the event # you need to troubleshoot. DEBUG=true |