From: Russell Currey Date: Fri, 15 Jul 2016 04:46:28 +0000 (+1000) Subject: docs/deployment: Fix systemctl commands X-Git-Tag: v2.0.0-rc1~300 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1871e487ed0ac18a436c79ce3c82820fa26580a5;p=thirdparty%2Fpatchwork.git docs/deployment: Fix systemctl commands systemctl takes the name of the operation before the name of the service so that you can do multiple things at once, i.e. "systemctl status nginx postgresql". Fix the ordering of the arguments. Signed-off-by: Russell Currey Reviewed-by: Stephen Finucane --- diff --git a/docs/deployment.md b/docs/deployment.md index 73282f96..1d9ca8ea 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -313,13 +313,13 @@ to start uWSGI at boot: Start the uWSGI service we created above: - $ sudo systemctl uwsgi start - $ sudo systemctl uwsgi status + $ sudo systemctl start uwsgi + $ sudo systemctl status uwsgi Next up, restart the nginx service: - $ sudo systemctl nginx restart - $ sudo systemctl nginx status + $ sudo systemctl restart nginx + $ sudo systemctl status nginx Patchwork uses a cron script to clean up expired registrations and send notifications of patch changes (for projects with this enabled). Something like