~fo0bar/turku/turku-agent-cleanup

30 by Ryan Finnie
Use /usr/bin/env for main scripts
1
#!/usr/bin/env python
16 by Ryan Finnie
Begin separating functionality into modules
2
3
# Turku backups - client agent
4
# Copyright 2015 Canonical Ltd.
5
#
6
# This program is free software: you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License version 3, as published by
8
# the Free Software Foundation.
9
#
10
# This program is distributed in the hope that it will be useful, but WITHOUT
11
# ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
12
# SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
# General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License along with
16
# this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
import sys
19
from turku_agent import update_config
20
sys.exit(update_config.main(sys.argv))