Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit 0d7e5e8

Browse files
author
Alex Paliarush
committed
Fixed issue with MySQL being down after VM power off
1 parent b3b8160 commit 0d7e5e8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1414

1515
### Fixed
1616
- It is now possible to use spaces in path to vagrant project on Windows. On OSX and Linux hosts it works in non-NFS mode, in NFS mode it does not work because of [bug in vagrant](mitchellh/vagrant#7540)
17+
- Fixed issue with MySQL being down after VM power off
1718

1819
### Added
1920

Diff for: scripts/provision/upgrade_environment_recurring.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,7 @@ is_varnish_installed="$(isServiceAvailable varnish)"
4949
if [[ ${is_varnish_installed} -eq 0 ]]; then
5050
apt-get update
5151
apt-get install -y varnish
52-
fi
52+
fi
53+
54+
# Fix issue with MySQL being down after VM power off
55+
service mysql restart

0 commit comments

Comments
 (0)