Skip to content

Commit 01a21f3

Browse files
committed
Added btsync install task
1 parent bd5f700 commit 01a21f3

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

fabfile.py

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
from fabgis.system import create_user
7272
from fabgis.docker import (
7373
setup_docker, setup_docker_image, docker, create_docker_container)
74+
from fabgis.btsync import install_btsync
7475
# You can also make generic tasks available at the command line simply by
7576
# importing them. e.g.
7677
#from fabgis.sphinx import setup_sphinx

fabgis/btsync.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# coding=utf-8
2+
"""
3+
BTSync related tasks
4+
=====================
5+
6+
Tools for deployment of btsync on a server.
7+
8+
see http://www.bittorrent.com/sync
9+
10+
Tim Sutton, May 2014"""
11+
12+
import os
13+
from fabric.contrib.files import exists
14+
from fabric.api import run, cd, env, task, sudo, fastprint
15+
from fabric.colors import green
16+
from fabtools import require
17+
import fabtools
18+
19+
20+
@task
21+
def install_btsync():
22+
"""Install btsync from ppa."""
23+
fabtools.deb.update_index(quiet=True)
24+
fabtools.require.deb.package('software-properties-common')
25+
fabtools.require.deb.ppa('ppa:tuxpoldo/btsync')
26+
fabtools.require.deb.package('btsync')
27+
fastprint(green('BTSync installed'))
28+

0 commit comments

Comments
 (0)