summaryrefslogtreecommitdiff
path: root/gnu/services.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@scratchpost.org>2017-12-17 08:31:32 +0100
committerDanny Milosavljevic <dannym@scratchpost.org>2017-12-17 08:32:37 +0100
commite25ca462e5c6b4e5bbcfb70dbdf1006a25749dee (patch)
tree98262cecb5510b42f73f27480122a9d2a10a7539 /gnu/services.scm
parentbc3d6077489e7be5bee35d426207ac0f290c09d0 (diff)
services: cleanup: Remove "/run/udev/watch.old" directory.
* gnu/services.scm (cleanup-gexp): Remove "/run/udev/watch.old" directory.
Diffstat (limited to 'gnu/services.scm')
-rw-r--r--gnu/services.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services.scm b/gnu/services.scm
index 016ff08e0b2..15fc6dcb491 100644
--- a/gnu/services.scm
+++ b/gnu/services.scm
@@ -392,7 +392,8 @@ boot."
392 (mkdir "/tmp") 392 (mkdir "/tmp")
393 (chmod "/tmp" #o1777) 393 (chmod "/tmp" #o1777)
394 (mkdir "/var/run") 394 (mkdir "/var/run")
395 (chmod "/var/run" #o755)))))))) 395 (chmod "/var/run" #o755)
396 (delete-file-recursively "/run/udev/watch.old"))))))))
396 397
397(define cleanup-service-type 398(define cleanup-service-type
398 ;; Service that cleans things up in /tmp and similar. 399 ;; Service that cleans things up in /tmp and similar.