1
0
Fork 0
screen/debian/screen.bug-script
Daniel Baumann ea1ae6b476
Adding debian version 4.9.1-3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 15:19:58 +02:00

28 lines
684 B
Bash
Executable file

#!/bin/sh
exec 1>&3
exec 2>&3
echo File Existence and Permissions
echo ------------------------------
echo ''
ls -ldU \
/run \
/var/run \
/usr/bin/screen \
/etc/tmpfiles.d/screen-cleanup.conf \
/lib/systemd/system/screen-cleanup.service \
/etc/init.d/screen-cleanup \
/etc/rc?.d/*screen-cleanup
echo ''
echo File contents
echo -------------
echo ''
if [ -e /etc/tmpfiles.d/screen-cleanup.conf ]; then
echo '### /etc/tmpfiles.d/screen-cleanup.conf'
echo ______________________________________________________________________
cat /etc/tmpfiles.d/screen-cleanup.conf
echo ______________________________________________________________________
fi