mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Optionally use sudo if not running upgrade.sh as root
This commit is contained in:
17
upgrade.sh
17
upgrade.sh
@ -1,13 +1,24 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
# This script will prepare NetBox to run after the code has been upgraded to
|
# This script will prepare NetBox to run after the code has been upgraded to
|
||||||
# its most recent release.
|
# its most recent release.
|
||||||
#
|
#
|
||||||
# Once the script completes, remember to restart the WSGI service (e.g.
|
# Once the script completes, remember to restart the WSGI service (e.g.
|
||||||
# gunicorn or uWSGI).
|
# 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
|
||||||
|
|
||||||
# Install any new Python packages
|
# Install any new Python packages
|
||||||
echo "Updating required Python packages (pip install -r requirements.txt --upgrade)..."
|
COMMAND="${PREFIX}pip install -r requirements.txt --upgrade"
|
||||||
sudo pip install -r requirements.txt --upgrade
|
echo "Updating required Python packages ($COMMAND)..."
|
||||||
|
eval $COMMAND
|
||||||
|
|
||||||
# Apply any database migrations
|
# Apply any database migrations
|
||||||
./netbox/manage.py migrate
|
./netbox/manage.py migrate
|
||||||
|
Reference in New Issue
Block a user