~asac/live-build/virtual-hdd-mtab-hack

« back to all changes in this revision

Viewing changes to functions/breakpoints.sh

  • Committer: Daniel Baumann
  • Date: 2009-11-22 13:38:00 UTC
  • Revision ID: git-v1:a62f12110b19a52a58d7eae871012202cfa16055
Renaming categories to archive areas (Closes: #519690).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# breakpoints.sh - run with breakpoints
 
4
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
 
5
#
 
6
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
 
7
# This is free software, and you are welcome to redistribute it
 
8
# under certain conditions; see COPYING for details.
 
9
 
 
10
Breakpoint ()
 
11
{
 
12
        NAME="${1}"
 
13
 
 
14
        if [ "${_BREAKPOINTS}" = "enabled" ]
 
15
        then
 
16
                Echo_message "Waiting at %s" "${NAME}"
 
17
                read WAIT
 
18
        fi
 
19
}