[IMP] reorganize project directory structure
Restructure the project for better organization and maintainability:
New structure:
./upgrade.sh - Main entry point (unchanged)
./lib/common.sh - Shared bash functions
./lib/python/ - Python utility scripts
./scripts/ - Workflow scripts (prepare_db, finalize_db)
./config/ - Configuration files (compose.yml)
./versions/{13..18}.0/ - Version-specific migration scripts
File renames:
- pre_migration_view_checking.py -> lib/python/check_views.py
- post_migration_fix_duplicated_views.py -> lib/python/fix_duplicated_views.py
- post_migration_cleanup_obsolete_modules.py -> lib/python/cleanup_modules.py
Benefits:
- Single entry point visible at root level
- Clear separation between shared code, scripts, and config
- Shorter, cleaner Python script names (context given by caller)
- Easier navigation and maintenance
This commit is contained in:
6
versions/15.0/post_upgrade.sh
Executable file
6
versions/15.0/post_upgrade.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
echo "Post migration to 15.0..."
|
||||
|
||||
#compose --debug run ou15 -u base --stop-after-init --no-http
|
||||
22
versions/15.0/pre_upgrade.sh
Executable file
22
versions/15.0/pre_upgrade.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
echo "Prepare migration to 15.0..."
|
||||
|
||||
# Copy database
|
||||
copy_database ou14 ou15 ou15 || exit 1
|
||||
|
||||
# Execute SQL pre-migration commands
|
||||
PRE_MIGRATE_SQL=$(cat <<'EOF'
|
||||
/* Delete add-on 'account_usability' as its name has changed and another 'account_usability' add-on is created */
|
||||
DELETE FROM ir_module_module WHERE name = 'account_usability';
|
||||
DELETE FROM ir_model_data WHERE module = 'base' AND name = 'module_account_usability';
|
||||
EOF
|
||||
)
|
||||
echo "SQL command = $PRE_MIGRATE_SQL"
|
||||
query_postgres_container "$PRE_MIGRATE_SQL" ou15 || exit 1
|
||||
|
||||
# Copy filestores
|
||||
copy_filestore ou14 ou14 ou15 ou15 || exit 1
|
||||
|
||||
echo "Ready for migration to 15.0!"
|
||||
4
versions/15.0/upgrade.sh
Executable file
4
versions/15.0/upgrade.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
compose -f ../compose.yml run -p 8015:8069 ou15 --config=/opt/odoo/auto/odoo.conf --stop-after-init -u all --workers 0 --log-level=debug --max-cron-threads=0 --limit-time-real=10000 --database=ou15 --load=base,web,openupgrade_framework
|
||||
Reference in New Issue
Block a user