Typo in fabfile, accidentally performing both mongo + psql backups at the same time.

This commit is contained in:
Samuel Clay 2010-12-16 15:21:50 -05:00
parent 35139e2656
commit da4dff860c

1
fabfile.py vendored
View file

@ -71,7 +71,6 @@ def backup_mongo():
@roles('db')
def backup_postgresql():
with cd('~/newsblur/utils/backups'):
run('./mongo_backup.sh')
run('./postgresql_backup.sh')
# ======