Skip to content

Commit c4241a7

Browse files
author
Benjamin Calef
committed
[v1.3.4] resolve redis config issue and move php version settings
2 parents adb34bd + 72383d4 commit c4241a7

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

provision/110-magento-app.sh

+15-15
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ if [ "$PROJECT_SOURCE" == "composer" ]; then
2727
# Install from magento
2828
sudo -u vagrant composer create-project --no-interaction --no-install --no-progress \
2929
--repository=https://repo.magento.com/ magento/project-"$PROJECT_EDITION"-edition="$PROJECT_VERSION" "$PROJECT_NAME" -d "$DIRECTORY_BUILD"
30-
# Install sample data
31-
if [ "$PROJECT_SAMPLE" == "true" ]; then
32-
sudo -u vagrant composer require -d "$PROJECT_BUILD" \
33-
magento/module-bundle-sample-data magento/module-widget-sample-data \
34-
magento/module-theme-sample-data magento/module-catalog-sample-data \
35-
magento/module-customer-sample-data magento/module-cms-sample-data \
36-
magento/module-catalog-rule-sample-data magento/module-sales-rule-sample-data \
37-
magento/module-review-sample-data magento/module-tax-sample-data \
38-
magento/module-sales-sample-data magento/module-grouped-product-sample-data \
39-
magento/module-downloadable-sample-data magento/module-msrp-sample-data \
40-
magento/module-configurable-sample-data magento/module-product-links-sample-data \
41-
magento/module-wishlist-sample-data magento/module-swatches-sample-data \
42-
magento/sample-data-media magento/module-offline-shipping-sample-data
43-
fi
30+
# Install sample data
31+
if [ "$PROJECT_SAMPLE" == "true" ]; then
32+
sudo -u vagrant composer require -d "$PROJECT_BUILD" \
33+
magento/module-bundle-sample-data magento/module-widget-sample-data \
34+
magento/module-theme-sample-data magento/module-catalog-sample-data \
35+
magento/module-customer-sample-data magento/module-cms-sample-data \
36+
magento/module-catalog-rule-sample-data magento/module-sales-rule-sample-data \
37+
magento/module-review-sample-data magento/module-tax-sample-data \
38+
magento/module-sales-sample-data magento/module-grouped-product-sample-data \
39+
magento/module-downloadable-sample-data magento/module-msrp-sample-data \
40+
magento/module-configurable-sample-data magento/module-product-links-sample-data \
41+
magento/module-wishlist-sample-data magento/module-swatches-sample-data \
42+
magento/sample-data-media magento/module-offline-shipping-sample-data
43+
fi
4444
else
4545
# Install from git
4646
sudo -u vagrant git clone "$PROJECT_REPOSITORY" "$PROJECT_BUILD"
@@ -49,7 +49,6 @@ fi
4949

5050
# Composer install
5151
sudo -u vagrant composer install -d "$PROJECT_BUILD" --no-progress --no-interaction --no-suggest
52-
chmod +x "$PROJECT_PATH"/bin/magento
5352

5453
# Rsync directory
5554
if [ "$PROJECT_BUILD" != "$PROJECT_PATH" ]; then
@@ -66,6 +65,7 @@ if [ "$PROJECT_MOUNT" != "nfs" ] || [ "$PROJECT_MOUNT_PATH" == "app" ]; then
6665
fi
6766

6867
# Run install
68+
chmod +x "$PROJECT_PATH"/bin/magento
6969
sudo -u vagrant "$PROJECT_PATH"/bin/magento setup:uninstall -n -q
7070
sudo -u vagrant "$PROJECT_PATH"/bin/magento setup:install \
7171
--base-url="http://${PROJECT_URL}/" \

0 commit comments

Comments
 (0)