public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] cleanfs: Clear /var/tmp on boot as well
@ 2022-02-27 21:53 Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-02-27 21:53 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1082 bytes --]

Similar to /tmp/, there is no reason to keep any leftovers in /var/tmp,
nor can any application expect content placed there to be persistent.

On several IPFire installations I have access to, this would remove
quite some clutter accumulated in /var/tmp over the years.

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/initscripts/system/cleanfs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/initscripts/system/cleanfs b/src/initscripts/system/cleanfs
index d1cbb2547..f315682ce 100644
--- a/src/initscripts/system/cleanfs
+++ b/src/initscripts/system/cleanfs
@@ -117,6 +117,11 @@ case "${1}" in
 		find . -xdev -mindepth 1 ! -name lost+found \
 			-delete || failed=1
 
+		boot_mesg -n " /var/tmp" ${NORMAL}
+		cd /var/tmp &&
+		find . -xdev -mindepth 1 ! -name lost+found \
+			-delete || failed=1
+
 		boot_mesg -n " /var/ipfire/dhcp" ${NORMAL}
 		cd /var/ipfire/dhcpc/ && find . -name "*.pid" -exec rm -f {} \; || failed=1
 		cd /var/ipfire/dhcpc/ && find . -name "*.cache" -exec rm -f {} \; || failed=1
-- 
2.34.1

^ permalink raw reply	[flat|nested] 2+ messages in thread
[parent not found: <0859f5b2a9dce90dd0e5fef01c9608856eef5787.camel@ipfire.org>]

end of thread, other threads:[~2022-03-01 10:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-27 21:53 [PATCH] cleanfs: Clear /var/tmp on boot as well Peter Müller
     [not found] <0859f5b2a9dce90dd0e5fef01c9608856eef5787.camel@ipfire.org>
2022-03-01 10:56 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox