12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/bin/bash
- # This script will prepare NetBox to run after the code has been upgraded to
- # its most recent release.
- #
- # Once the script completes, remember to restart the WSGI service (e.g.
- # gunicorn or uWSGI).
- # Optionally use sudo if not already root, and always prompt for password
- # before running the command
- PREFIX="sudo -k "
- if [ "$(whoami)" = "root" ]; then
- # When running upgrade as root, ask user to confirm if they wish to
- # continue
- read -n1 -rsp $'Running NetBox upgrade as root, press any key to continue or ^C to cancel\n'
- PREFIX=""
- fi
- # Delete stale bytecode
- COMMAND="${PREFIX}find . -name \"*.pyc\" -delete"
- echo "Cleaning up stale Python bytecode ($COMMAND)..."
- eval $COMMAND
- # Fall back to pip3 if pip is missing
- PIP="pip"
- type $PIP >/dev/null 2>&1 || PIP="pip3"
- # Install any new Python packages
- COMMAND="${PREFIX}${PIP} install -r requirements.txt --upgrade"
- echo "Updating required Python packages ($COMMAND)..."
- eval $COMMAND
- # Apply any database migrations
- COMMAND="./netbox/manage.py migrate"
- echo "Updating required Python packages ($COMMAND)..."
- eval $COMMAND
- # Collect static files
- COMMAND="./netbox/manage.py collectstatic --no-input"
- echo "Collecting static files ($COMMAND)..."
- eval $COMMAND
|