Add a fabric call to update the permissions

This commit is contained in:
2011-06-03 00:51:28 +01:00
parent ca46220efd
commit 8a7601552f

5
fabfile.py vendored
View File

@@ -221,3 +221,8 @@ def clear_logs():
def deploy_static():
with cd('%(path)s/dreddit-auth/' % env):
run('./app/manage.py collectstatic --settings=%(config)s -v0 --noinput' % env)
def update_permissions():
with cd('%(path)s/dreddit-auth/' % env):
run('./app/manage.py updatepermissions --settings=%(config)s' % env)