diff options
author | davidovski <david@davidovski.xyz> | 2022-03-01 22:01:26 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-01 22:01:26 +0000 |
commit | efee4ebf43e376a7cd8b8abcef0c70aa90427bb4 (patch) | |
tree | 13956b6dbca8622b71edbdd3a1c2a949c5d1aac8 /s6/sv/cleantmp |
initial commit
Diffstat (limited to 's6/sv/cleantmp')
-rw-r--r-- | s6/sv/cleantmp/dependencies.d/remount-root | 0 | ||||
-rw-r--r-- | s6/sv/cleantmp/down | 3 | ||||
-rw-r--r-- | s6/sv/cleantmp/type | 1 | ||||
-rw-r--r-- | s6/sv/cleantmp/up | 3 |
4 files changed, 7 insertions, 0 deletions
diff --git a/s6/sv/cleantmp/dependencies.d/remount-root b/s6/sv/cleantmp/dependencies.d/remount-root new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/s6/sv/cleantmp/dependencies.d/remount-root diff --git a/s6/sv/cleantmp/down b/s6/sv/cleantmp/down new file mode 100644 index 0000000..c5f65cc --- /dev/null +++ b/s6/sv/cleantmp/down @@ -0,0 +1,3 @@ +#!/bin/execlineb -P +if { s6-echo "[ Shutdown ] : Cleaning /tmp" } +/bin/sh -c "/etc/s6/scripts/clean_tmp.sh" diff --git a/s6/sv/cleantmp/type b/s6/sv/cleantmp/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/s6/sv/cleantmp/type @@ -0,0 +1 @@ +oneshot diff --git a/s6/sv/cleantmp/up b/s6/sv/cleantmp/up new file mode 100644 index 0000000..9c24500 --- /dev/null +++ b/s6/sv/cleantmp/up @@ -0,0 +1,3 @@ +#!/bin/execlineb -P +if { s6-echo "[ ReadWrite Mode ] 0/6 : Cleaning /tmp" } +/bin/sh -c "/etc/s6/scripts/clean_tmp.sh" |