Upgrade to Synnefo v0.18¶
Upgrade Steps¶
The upgrade to v0.18 consists of the following steps:
Stop gunicorn in all nodes
# service gunicorn stop
Upgrade Synnefo on all nodes to the latest version (0.18)
# apt-get update # apt-get upgrade
Run migrations on Astakos.
astakos.host$ snf-manage migrate
From this version on, user deactivation triggers suspension of all projects and project memberships related to the user. To apply this new policy to users that have already been deactivated, run:
astakos.host$ snf-manage user-check --all-users --suspend-deactivated --noemail --fix
Start gunicorn
# service gunicorn start
New configuration options¶
On the admin app, there is a new access control option regarding the new modify email action. The action setting is named ‘modify_email’. The list of user groups defined in this have access on the modify email action.
The following line (modified accordingly) should be added on ‘ADMIN_RBAC’ setting under the ‘user’ dictionary:
'modify_email': [ADMIN_HELPDESK_GROUP, ADMIN_GROUP],