#!/bin/sh

if grep -q '\<devpts\>' /proc/filesystems 2>/dev/null ; then
    /bin/mount -t devpts -ogid=5,mode=620 devpts /dev/pts
fi
