]> git.ipfire.org Git - ipfire-2.x.git/blob - config/dma/dma-cleanup-spool
Merge remote-tracking branch 'ms/ipsec-subnets' into next
[ipfire-2.x.git] / config / dma / dma-cleanup-spool
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2015 Michael Tremer <michael.tremer@ipfire.org> #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 SPOOL_DIR="/var/spool/dma"
23
24 find_messages() {
25 find "${SPOOL_DIR}" -type f -name "M*" -mtime +30
26 }
27
28 remove_message() {
29 local f_message="${1}"
30 local f_queue="${f_message/${SPOOL_DIR}\/M/${SPOOL_DIR}\/Q}"
31
32 # If a message file and a queue file exist, delete both
33 [ -f "${f_message}" ] || return 1
34 [ -f "${f_queue}" ] || return 1
35
36 rm -f "${f_message}" "${f_queue}"
37 return 0
38 }
39
40 main() {
41 for message in $(find_messages); do
42 remove_message "${message}"
43 done
44
45 return 0
46 }
47
48 main || exit $?