Remove obsolete script

This commit is contained in:
Joshua Boniface 2020-02-15 22:59:12 -05:00
parent db09b4c983
commit 574623f2a8
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
#!/bin/bash
# Apply PVC database migrations
# Part of the Parallel Virtual Cluster (PVC) system
PVC_CONFIG_FILE="/etc/pvc/pvcapid.yaml"
PVC_SHARE_DIR="/usr/share/pvc"
if [[ ! -f ${PVC_CONFIG_FILE} ]]; then
echo "Create a configuration file at ${PVC_CONFIG_FILE} before upgrading the database."
exit 1
fi
pushd ${PVC_SHARE_DIR}
./pvcapid-manage.py db migrate
./pvcapid-manage.py db upgrade
popd