Statistics
| Branch: | Tag: | Revision:

root / daemons / ganeti-cleaner.in @ fc3fd894

History | View | Annotate | Download (1.2 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2009 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
set -e
22

    
23
DATA_DIR=@LOCALSTATEDIR@/lib/ganeti
24
QUEUE_ARCHIVE_DIR=$DATA_DIR/queue/archive
25

    
26
# Define how many days archived jobs should be left alone
27
REMOVE_AFTER=21
28

    
29
# Exit if machine is not part of a cluster
30
[[ -e $DATA_DIR/ssconf_master_node ]] || echo 0
31

    
32
# Exit if queue archive directory doesn't exist
33
[[ -d $QUEUE_ARCHIVE_DIR ]] || exit 0
34

    
35
# Remove old jobs
36
find $QUEUE_ARCHIVE_DIR -mindepth 2 -type f -mtime +$REMOVE_AFTER -print0 | \
37
xargs -r0 rm -f
38

    
39
exit 0