aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-modules
diff options
context:
space:
mode:
authordancer <dancer>2002-01-07 00:36:25 +0000
committerdancer <dancer>2002-01-07 00:36:25 +0000
commit0617ce9a3e5fd9c49fd8013afe663e0ebb072990 (patch)
tree52f29944c8cbee71aa3fdc214850fa8586aca66a /pbuilder-modules
parentdf2b760e73adf074a48223d8480737bde9b80cc3 (diff)
downloadpbuilder-0617ce9a3e5fd9c49fd8013afe663e0ebb072990.tar
pbuilder-0617ce9a3e5fd9c49fd8013afe663e0ebb072990.tar.gz
some more fixup, for release.
Diffstat (limited to 'pbuilder-modules')
-rw-r--r--pbuilder-modules4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-modules b/pbuilder-modules
index 47504cd..4489f52 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -52,7 +52,7 @@ EOF
function umountproc () {
if [ "$USEPROC" = "yes" ]; then
- echo " -> unmounting proc"
+ echo " -> unmounting /proc filesystem"
if ! umount "$BUILDPLACE/proc"; then
echo "W: Retrying to unmount proc"
sleep 5s
@@ -73,7 +73,7 @@ EOF
function mountproc () {
if [ "$USEPROC" = "yes" ]; then
- echo " -> mounting proc"
+ echo " -> mounting /proc filesystem"
mkdir -p $BUILDPLACE/proc
mount -t proc /proc "$BUILDPLACE/proc"
fi