summaryrefslogtreecommitdiff
path: root/debian/live-boot.init
diff options
context:
space:
mode:
authorMarco Amadori <amadorim@vdavda.com>2010-09-07 17:38:27 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:59:20 +0100
commit089ae56f49ab73a926c28d96baee58986ade09a8 (patch)
tree1f18bfcc5d2f0cbb366459980806d51901c47074 /debian/live-boot.init
parentcab29efedefa0cac9b1d56e6f03ab8caf911bf2e (diff)
downloadlive-boot-089ae56f49ab73a926c28d96baee58986ade09a8.tar.gz
live-boot-089ae56f49ab73a926c28d96baee58986ade09a8.zip
Fix snapshots' sync-strings usage (Closes: #591330).
Diffstat (limited to 'debian/live-boot.init')
-rw-r--r--debian/live-boot.init5
1 files changed, 3 insertions, 2 deletions
diff --git a/debian/live-boot.init b/debian/live-boot.init
index 03bc390..b93cfcd 100644
--- a/debian/live-boot.init
+++ b/debian/live-boot.init
@@ -21,12 +21,13 @@ PATH=/usr/sbin:/usr/bin:/sbin:/bin
NAME=live-boot
SCRIPTNAME=/etc/init.d/${NAME}
DO_SNAPSHOT=/sbin/live-snapshot
+SNAPSHOT_CONF="/etc/live/boot.d/snapshot.conf"
# Exit if system was not booted by live-boot
grep -qs boot=live /proc/cmdline || exit 0
-# Read configuration variable file if it is present
-[ -r /etc/live.conf ] && . /etc/live.conf
+# Read snapshot configuration variables
+[ -r ${SNAPSHOT_CONF} ] && . ${SNAPSHOT_CONF}
# Load the VERBOSE setting and other rcS variables
[ -f /etc/default/rcS ] && . /etc/default/rcS