summaryrefslogtreecommitdiffstats
path: root/debian/screen.bug-script
diff options
context:
space:
mode:
Diffstat (limited to 'debian/screen.bug-script')
-rwxr-xr-xdebian/screen.bug-script28
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/screen.bug-script b/debian/screen.bug-script
new file mode 100755
index 0000000..d32db27
--- /dev/null
+++ b/debian/screen.bug-script
@@ -0,0 +1,28 @@
+#!/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