aboutsummaryrefslogtreecommitdiff
path: root/units
diff options
context:
space:
mode:
authorMaria Lisina <sekoohaka.sarisan@gmail.com>2025-09-22 17:43:38 +0500
committerMaria Lisina <sekoohaka.sarisan@gmail.com>2025-09-22 17:44:30 +0500
commit53714957d4bed97ecd95005643e7abbd22585df6 (patch)
tree195c0b0eee6fbfdc133b3bdddd04df6602d6327d /units
parent3acb0da586da283c94ef18e7df792af3cafdfbdf (diff)
auth/*: Update auth units to follow new standard
Signed-off-by: Maria Lisina <sekoohaka.sarisan@gmail.com>
Diffstat (limited to 'units')
-rw-r--r--units/dump.zsh18
1 files changed, 0 insertions, 18 deletions
diff --git a/units/dump.zsh b/units/dump.zsh
deleted file mode 100644
index a514c37..0000000
--- a/units/dump.zsh
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright (C) 2024-2025 Maria Lisina
-# Copyright (C) 2024-2025 Danil Lisin
-# SPDX-License-Identifier: Apache-2.0
-
-if [[ -z "${collect_dumps}" ]]
-then
- return 0
-fi
-
-mkdir -p "${dumps}/${update_id}"
-
-for dump_file in ${dump[@]}
-do
- if [[ -f "${cache}/${dump_file}" ]]
- then
- mv "${cache}/${dump_file}" "${dumps}/${update_id}"
- fi
-done