The legacy method does not work any longer, so just use the Flask manage script and remove the obsolete legacy one.
		
			
				
	
	
		
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Apply PVC database migrations
 | |
| # Part of the Parallel Virtual Cluster (PVC) system
 | |
| 
 | |
| export PVC_CONFIG_FILE="/etc/pvc/pvc.conf"
 | |
| 
 | |
| if [[ ! -f ${PVC_CONFIG_FILE} ]]; then
 | |
|     echo "Create a configuration file at ${PVC_CONFIG_FILE} before upgrading the database."
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| pushd /usr/share/pvc
 | |
| 
 | |
| export FLASK_APP=./pvcapid-manage-flask.py
 | |
| flask db upgrade
 | |
| 
 | |
| popd
 |