Statistics
| Branch: | Tag: | Revision:

root / daemons / ganeti-cleaner.in @ 6e3bf290

History | View | Annotate | Download (2.5 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2009, 2010, 2011, 2012 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 -u
22

    
23
@SHELL_ENV_INIT@
24

    
25
# Overridden by unittest
26
: ${CHECK_CERT_EXPIRED:=$PKGLIBDIR/check-cert-expired}
27

    
28
readonly CLEANER_LOG_DIR=$LOG_DIR/cleaner
29
readonly QUEUE_ARCHIVE_DIR=$DATA_DIR/queue/archive
30
readonly CRYPTO_DIR=$RUN_DIR/crypto
31

    
32
in_cluster() {
33
  [[ -e $DATA_DIR/ssconf_master_node ]]
34
}
35

    
36
cleanup_master() {
37
  # Return if machine is not part of a cluster
38
  in_cluster || return 0
39

    
40
  # Return if queue archive directory doesn't exist
41
  [[ -d $QUEUE_ARCHIVE_DIR ]] || return 0
42

    
43
  # Remove old jobs
44
  find $QUEUE_ARCHIVE_DIR -mindepth 2 -type f -mtime +$REMOVE_AFTER -print0 | \
45
  xargs -r0 rm -vf
46
}
47

    
48
cleanup_node() {
49
  # Return if directory for crypto keys doesn't exist
50
  [[ -d $CRYPTO_DIR ]] || return 0
51

    
52
  find $CRYPTO_DIR -mindepth 1 -maxdepth 1 -type d | \
53
  while read dir; do
54
    if $CHECK_CERT_EXPIRED $dir/cert; then
55
      rm -vf $dir/{cert,key}
56
      rmdir -v --ignore-fail-on-non-empty $dir
57
    fi
58
  done
59
}
60

    
61
cleanup_watcher() {
62
  # Return if machine is not part of a cluster
63
  in_cluster || return 0
64

    
65
  # Remove old watcher files
66
  find $DATA_DIR -maxdepth 1 -type f -mtime +$REMOVE_AFTER \
67
    \( -name 'watcher.*-*-*-*.data' -or \
68
       -name 'watcher.*-*-*-*.instance-status' \) -print0 | \
69
  xargs -r0 rm -vf
70
}
71

    
72
# Define how many days archived jobs should be left alone
73
REMOVE_AFTER=21
74

    
75
# Define how many log files to keep around (usually one per day)
76
KEEP_LOGS=50
77

    
78
# Log file for this run
79
LOG_FILE=$CLEANER_LOG_DIR/cleaner-$(date +'%Y-%m-%dT%H_%M').$$.log
80

    
81
# Create log directory
82
mkdir -p $CLEANER_LOG_DIR
83

    
84
# Redirect all output to log file
85
exec >>$LOG_FILE 2>&1
86

    
87
echo "Cleaner started at $(date)"
88

    
89
# Remove old cleaner log files
90
find $CLEANER_LOG_DIR -maxdepth 1 -type f | sort | head -n -$KEEP_LOGS | \
91
xargs -r rm -vf
92

    
93
cleanup_master
94
cleanup_node
95
cleanup_watcher
96

    
97
exit 0