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:
Diffstat (limited to 'etc/ncp-config.d/nc-limits.sh')
-rw-r--r--etc/ncp-config.d/nc-limits.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/ncp-config.d/nc-limits.sh b/etc/ncp-config.d/nc-limits.sh
index 8a7386b8..defced0f 100644
--- a/etc/ncp-config.d/nc-limits.sh
+++ b/etc/ncp-config.d/nc-limits.sh
@@ -30,16 +30,16 @@ configure()
# need to restart php
bash -c " sleep 3
- systemctl stop php7.0-fpm
- systemctl stop mysqld
+ service php7.0-fpm stop
+ service mysqld stop
sleep 0.5
- systemctl start php7.0-fpm
- systemctl start mysqld
+ service php7.0-fpm start
+ service mysqld start
" &>/dev/null &
# redis max memory
sed -i "s|maxmemory .*|maxmemory $REDISMEM_|" /etc/redis/redis.conf
- systemctl restart redis
+ service redis restart
}
install() { :; }