15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
# Simple postinstall script
|
|
#
|
|
# We will attempt to install a terminfo entry for screen
|
|
# and to make screen SUID root
|
|
|
|
SHAREDIR=${BASEDIR}/share/screen
|
|
TIC=/usr/5bin/tic
|
|
|
|
# install terminfo
|
|
${TIC} ${SHAREDIR}/screeninfo.src
|
|
|
|
# Make screen suid root
|
|
chown root:bin ${BASEDIR}/bin/screen-4.0.2
|
|
chmod 4755 ${BASEDIR}/bin/screen-4.0.2
|