Skip to content

Commit

Permalink
fix mysqld service named mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoparker committed Jun 19, 2018
1 parent 1a9a53f commit 865ad08
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@

[v0.57.5](https://github.com/nextcloud/nextcloudpi/commit/444e762) (2018-06-18) fix nextcloud-domain running before default GW is ready
[v0.57.6](https://github.com/nextcloud/nextcloudpi/commit/8ab0187) (2018-06-19) fix mysqld service named mysql

[v0.57.4](https://github.com/nextcloud/nextcloudpi/commit/ce2d38c) (2018-06-18) letsencrypt: install from debian package
[v0.57.5](https://github.com/nextcloud/nextcloudpi/commit/e75b574) (2018-06-18) fix nextcloud-domain running before default GW is ready

[v0.57.4 ](https://github.com/nextcloud/nextcloudpi/commit/ce2d38c) (2018-06-18) letsencrypt: install from debian package

[v0.57.3 ](https://github.com/nextcloud/nextcloudpi/commit/a74248b) (2018-06-18) armbian: default to SSH disabled

[v0.57.2 ](https://github.com/nextcloud/nextcloudpi/commit/5479305) (2018-06-18) nc-static-IP: autodetect default interface

[v0.57.1 ](https://github.com/nextcloud/nextcloudpi/commit/97375a1) (2018-06-18) docker: replace systemd for service

[v0.57.0](https://github.com/nextcloud/nextcloudpi/commit/ef5839d) (2018-06-18) update to NC 13.0.4
[v0.57.0 ](https://github.com/nextcloud/nextcloudpi/commit/ef5839d) (2018-06-18) update to NC 13.0.4

[v0.56.25](https://github.com/nextcloud/nextcloudpi/commit/fe16326) (2018-06-18) nc-snapshot-sync: upgrade

Expand Down
4 changes: 2 additions & 2 deletions etc/ncp-config.d/nc-limits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ configure()
# need to restart php
bash -c " sleep 3
service php7.0-fpm stop
service mysqld stop
service mysql stop
sleep 0.5
service php7.0-fpm start
service mysqld start
service mysql start
" &>/dev/null &

# redis max memory
Expand Down
4 changes: 2 additions & 2 deletions etc/ncp-config.d/nc-nextcloud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ install()

# need to restart php
service php7.0-fpm stop
service mysqld stop
service mysql stop
sleep 0.5
service php7.0-fpm start
service mysqld start
service mysql start
}

# service to randomize passwords on first boot
Expand Down
4 changes: 2 additions & 2 deletions etc/ncp-config.d/nc-restore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ bash /usr/local/bin/nextcloud-domain.sh
[[ "$NEED_RESTART" == "1" ]] && \
bash -c " sleep 3
service php7.0-fpm stop
service mysqld stop
service mysql stop
sleep 0.5
service php7.0-fpm start
service mysqld start
service mysql start
" &>/dev/null &
EOF
chmod +x /usr/local/bin/ncp-restore
Expand Down

0 comments on commit 865ad08

Please sign in to comment.