summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstall/ishtar-update4
1 files changed, 3 insertions, 1 deletions
diff --git a/install/ishtar-update b/install/ishtar-update
index 3e2797c76..d88cb527c 100755
--- a/install/ishtar-update
+++ b/install/ishtar-update
@@ -36,7 +36,7 @@ update_instances() {
elif command_exists su; then
sh_c='su -c'
else
- cecho r " Error: this installer needs the ability to run commands as root."
+ cecho r " Error: this updater needs the ability to run commands as root."
cecho r " We are unable to find either "sudo" or "su" available to make this happen."
exit 1
fi
@@ -87,6 +87,8 @@ update_instances() {
python manage.py collectstatic --noinput 2> /dev/null
cecho y " * database migrations"
python manage.py migrate
+ cecho y " * regenerate permissions"
+ python manage.py regenerate_permisssions
done
fi