df7d3c5bd5441376399d3790313858daaa39da87
[matthijs/projects/backupninja.git] / src / backupninja
1 #!/usr/bin/python
2 # -*- mode: python; sh-basic-offset: 4; indent-tabs-mode: nil; -*-
3 # vim: set filetype=python sw=4 sts=4 expandtab autoindent:
4 #
5 #    Backupninja python reimplementation, based on original backupninja program
6 #    by riseup.net.
7 #    Copyright (C) 2010  Matthijs Kooijman <matthijs@stdin.nl>
8 #
9 #    This program is free software; you can redistribute it and/or modify
10 #    it under the terms of the GNU General Public License as published by
11 #    the Free Software Foundation; either version 2 of the License, or
12 #    (at your option) any later version.
13 #
14 #    This program is distributed in the hope that it will be useful,
15 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #    GNU General Public License for more details.
18 #
19 #    You should have received a copy of the GNU General Public License along
20 #    with this program; if not, write to the Free Software Foundation, Inc.,
21 #    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 """ Check for scheduled backupninja actions and run them when needed """
24
25 import optparse
26 import logging
27 import sys
28
29 from backupninja.log import setup_logging
30
31 log = logging.getLogger()
32
33 def make_option_parser():
34     description = """%prog checks for scheduled actions and runs them when needed."""
35     parser = optparse.OptionParser(description=description)
36
37     return parser
38  
39 def main(argv):
40     # Parse options (Note that this exits in case of --help or an
41     # invalid commandline)
42     parser = make_option_parser()
43     (options, args) = parser.parse_args(argv)
44
45     # Setup logging
46     setup_logging(options)
47
48     # Load config file
49     # Process command
50     parser.print_help()
51
52 if __name__ == '__main__':
53     sys.exit(main(sys.argv))