mirror of
git://git.yoctoproject.org/meta-selinux
synced 2026-01-01 13:58:04 +00:00
Change the references to check for the distribution flag of 'selinux' being set before taking any action within the bbappends. This prevents the signature from being modified. Also remove PR changes, as they are no longer allowed. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
30 lines
587 B
Bash
Executable File
30 lines
587 B
Bash
Executable File
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: devpts
|
|
# Required-Start: udev
|
|
# Required-Stop:
|
|
# Default-Start: S
|
|
# Default-Stop:
|
|
# Short-Description: Mount /dev/pts file systems.
|
|
### END INIT INFO
|
|
|
|
. /etc/default/devpts
|
|
|
|
if grep -q devpts /proc/filesystems
|
|
then
|
|
#
|
|
# Create multiplexor device.
|
|
#
|
|
test -c /dev/ptmx || mknod -m 666 /dev/ptmx c 5 2
|
|
|
|
#
|
|
# Mount /dev/pts if needed.
|
|
#
|
|
if ! grep -q devpts /proc/mounts
|
|
then
|
|
mkdir -p /dev/pts
|
|
mount -t devpts devpts /dev/pts -ogid=${TTYGRP},mode=${TTYMODE}
|
|
test ! -x /sbin/restorecon || /sbin/restorecon -F /dev/pts
|
|
fi
|
|
fi
|