30
by Ryan Finnie
Use /usr/bin/env for main scripts |
1 |
#!/usr/bin/env python
|
27
by Ryan Finnie
Implement turku-agent-rsyncd-wrapper (LP: #1433914) |
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 rsyncd_wrapper |
|
20 |
sys.exit(rsyncd_wrapper.main(sys.argv)) |