Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-06-19 06:37:44 +0300
committernachoparker <nacho@ownyourbits.com>2018-06-19 06:38:41 +0300
commit865ad0836b6eb864fc19c3e6af896b10ff873b3b (patch)
tree4199f38cb986451584fbc269fe5a58be9f2acb84
parent1a9a53fce36d6b1f68b75eb861759e1adc85ba36 (diff)
fix mysqld service named mysqlv0.57.6
-rw-r--r--changelog.md8
-rw-r--r--etc/ncp-config.d/nc-limits.sh4
-rw-r--r--etc/ncp-config.d/nc-nextcloud.sh4
-rw-r--r--etc/ncp-config.d/nc-restore.sh4
4 files changed, 11 insertions, 9 deletions
diff --git a/changelog.md b/changelog.md
index f15896dc..1ae608fe 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[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
@@ -9,7 +11,7 @@
[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
diff --git a/etc/ncp-config.d/nc-limits.sh b/etc/ncp-config.d/nc-limits.sh
index defced0f..42442e81 100644
--- a/etc/ncp-config.d/nc-limits.sh
+++ b/etc/ncp-config.d/nc-limits.sh
@@ -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
diff --git a/etc/ncp-config.d/nc-nextcloud.sh b/etc/ncp-config.d/nc-nextcloud.sh
index 91e36583..f4bb8d61 100644
--- a/etc/ncp-config.d/nc-nextcloud.sh
+++ b/etc/ncp-config.d/nc-nextcloud.sh
@@ -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
diff --git a/etc/ncp-config.d/nc-restore.sh b/etc/ncp-config.d/nc-restore.sh
index 044811ae..25910e46 100644
--- a/etc/ncp-config.d/nc-restore.sh
+++ b/etc/ncp-config.d/nc-restore.sh
@@ -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