This generic extra phase is handy for fixing up things like python
modules after pip is installed or other distro specific requirements.
Change-Id: I4a68b830cd98c6f93191dac1edd7de2a0381feaa
| ... | ... |
@@ -538,6 +538,12 @@ source $TOP_DIR/tools/install_prereqs.sh |
| 538 | 538 |
|
| 539 | 539 |
install_rpc_backend |
| 540 | 540 |
|
| 541 |
+# a place for distro-specific post-prereq workarounds |
|
| 542 |
+if [[ -f $TOP_DIR/tools/${DISTRO}/post-prereq.sh ]]; then
|
|
| 543 |
+ echo_summary "Running ${DISTRO} extra prereq tasks"
|
|
| 544 |
+ source $TOP_DIR/tools/${DISTRO}/post-prereq.sh
|
|
| 545 |
+fi |
|
| 546 |
+ |
|
| 541 | 547 |
if is_service_enabled $DATABASE_BACKENDS; then |
| 542 | 548 |
install_database |
| 543 | 549 |
fi |