print app
os.chdir(self.dir + os.sep + app)
os.system('git ' + args)
- os.chdir(self.dir)
+ print ''
+ os.chdir(self.dir)
def pull(self, repo, branch):
args = 'pull ' + repo + ' ' + branch
args = 'remote -v'
self.process(args)
+ def show(self):
+ args = 'show'
+ self.process(args)
+
+ def head(self):
+ args = 'diff-tree -s HEAD'
+ self.process(args)
+
def add_repo(self, name, repo):
for app in self.apps:
if not app in self.exclude and os.path.isdir(self.dir + os.sep + app):
TELECASTER_CONF = [{'type':'mp3','server_type':'icecast','conf':'/etc/telecaster/deefuzzer_mp3.xml', 'port':'8000'},
{'type':'webm','server_type':'stream-m','conf':'/etc/telecaster/deefuzzer_webm.xml', 'port':'8080'}, ]
-TELECASTER_RSYNC_SERVER = 'telecaster@jimi.parisson.com:archives/'+TELEMETA_ORGANIZATION+'/'
+TELECASTER_RSYNC_SERVER = 'telecaster@192.168.0.31:archives/'
TELECASTER_RSYNC_LOG = '/home/telecaster/logs/rsync.log'