aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pbuilder-modules5
1 files changed, 4 insertions, 1 deletions
diff --git a/pbuilder-modules b/pbuilder-modules
index a16e307..c047fed 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -217,7 +217,10 @@ function mountproc () {
if [ "$USEDEVPTS" = "yes" ]; then
echo " -> mounting /dev/pts filesystem"
mkdir -p $BUILDPLACE/dev/pts || true
- mount -t devpts /dev/pts "$BUILDPLACE/dev/pts"
+ TTYGRP=5
+ TTYMODE=620
+ [ -f /etc/default/devpts ] && . /etc/default/devpts
+ mount -t devpts /dev/pts "$BUILDPLACE/dev/pts" -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE
fi
if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
echo " -> mounting selinux filesystem"