From 67776cb1f0a5cc93fe8b38b42bb9ca84b7aa517b Mon Sep 17 00:00:00 2001
From: cdsteinkuehler <charles@steinkuehler.net>
Date: Sun, 20 Nov 2016 19:22:22 -0600
Subject: [PATCH] chroot.sh: Clean out /tmp (#94)

Delete any files in the chroot /tmp/ directory before exiting.

Signed-off-by: Charles Steinkuehler <charles@steinkuehler.net>
---
 scripts/chroot.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/chroot.sh b/scripts/chroot.sh
index ceae29515..a4d9df28d 100755
--- a/scripts/chroot.sh
+++ b/scripts/chroot.sh
@@ -1192,6 +1192,9 @@ cat > "${DIR}/cleanup_script.sh" <<-__EOF__
 #		if [ -d /run/ ] ; then
 #			rm -rf /run/* || true
 #		fi
+
+		# Clear out the /tmp directory
+		rm -rf /tmp/* || true
 	}
 
 	cleanup
-- 
GitLab