diff options
| author | Marco Amadori <amadorim@vdavda.com> | 2010-09-07 17:38:27 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:59:20 +0100 |
| commit | 089ae56f49ab73a926c28d96baee58986ade09a8 (patch) | |
| tree | 1f18bfcc5d2f0cbb366459980806d51901c47074 /debian/live-boot.init | |
| parent | cab29efedefa0cac9b1d56e6f03ab8caf911bf2e (diff) | |
| download | live-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.init | 5 |
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 |
