瀏覽代碼

Clear the cache when running the upgrade script

kkthxbye 3 年之前
父節點
當前提交
9f3846ec5f
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      upgrade.sh

+ 5 - 0
upgrade.sh

@@ -108,6 +108,11 @@ COMMAND="python3 netbox/manage.py clearsessions"
 echo "Removing expired user sessions ($COMMAND)..."
 eval $COMMAND || exit 1
 
+# Clear the cache
+COMMAND="python3 netbox/manage.py clearcache"
+echo "Clearing the cache ($COMMAND)..."
+eval $COMMAND || exit 1
+
 if [ -v WARN_MISSING_VENV ]; then
   echo "--------------------------------------------------------------------"
   echo "WARNING: No existing virtual environment was detected. A new one has"