summaryrefslogtreecommitdiff
path: root/nonsystemd/opentmpfiles/tmpfiles-hook
diff options
context:
space:
mode:
Diffstat (limited to 'nonsystemd/opentmpfiles/tmpfiles-hook')
-rw-r--r--nonsystemd/opentmpfiles/tmpfiles-hook14
1 files changed, 0 insertions, 14 deletions
diff --git a/nonsystemd/opentmpfiles/tmpfiles-hook b/nonsystemd/opentmpfiles/tmpfiles-hook
deleted file mode 100644
index 786616b89..000000000
--- a/nonsystemd/opentmpfiles/tmpfiles-hook
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh -e
-
-each_conf() {
- while read -r f; do
- "$@" "$(basename "$f")"
- done
-}
-
-case $1 in
- tmpfiles) each_conf /usr/bin/tmpfiles --create ;;
- *) echo >&2 " Invalid operation '$1'"; exit 1 ;;
-esac
-
-exit 0