~ubuntu-branches/ubuntu/intrepid/partman-base/intrepid

« back to all changes in this revision

Viewing changes to partman-commit

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2007-04-03 13:44:56 UTC
  • Revision ID: james.westby@ubuntu.com-20070403134456-3duulfw2ml43z0q5
Tags: 105ubuntu3
partman-commit: If PARTMAN_ALREADY_CHECKED is set, don't run check.d
scripts again (LP: #100009).

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
        fi
90
90
fi
91
91
 
92
 
for s in /lib/partman/check.d/*; do
93
 
        if [ -x $s ]; then
94
 
                $s
95
 
        fi
96
 
done
 
92
if [ -z "$PARTMAN_ALREADY_CHECKED" ]; then
 
93
        for s in /lib/partman/check.d/*; do
 
94
                if [ -x $s ]; then
 
95
                        $s
 
96
                fi
 
97
        done
 
98
fi
97
99
 
98
100
for s in /lib/partman/commit.d/*; do
99
101
        if [ -x $s ]; then