aboutsummaryrefslogtreecommitdiffstats
path: root/docs/updating
diff options
context:
space:
mode:
authorSam Pearson <sam@sgp.me.uk>2018-10-03 08:51:49 +0100
committerSam Pearson <sam@sgp.me.uk>2018-10-04 08:31:48 +0100
commitb191bd1e83ad0ca152afc3a1c6c7823d9f4e683c (patch)
tree5bd4757687b92d8f23479b0698ec44bc69688c46 /docs/updating
parente2cdb265f48a8f39429965132eaaac649bb215a5 (diff)
[Docs] Use service command in examples
This changes a handful of example commands that restart the fixmystreet application server to use the `service` command rather than the script in `/etc/init.d`. This should be compatible with systems using either of `systemd` or `sysvinit`. [skip ci]
Diffstat (limited to 'docs/updating')
-rw-r--r--docs/updating/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/updating/index.md b/docs/updating/index.md
index e65097e6d..2ab8ed6f5 100644
--- a/docs/updating/index.md
+++ b/docs/updating/index.md
@@ -70,5 +70,5 @@ Lastly, you should restart your application server, this may be restarting
your webserver, or if it is running separately, something like:
{% highlight bash %}
-sudo /etc/init.d/fixmystreet restart
+sudo service fixmystreet restart
{% endhighlight %}