From adcb4c270e5970ef49d379bb8ef5403b04eec8db Mon Sep 17 00:00:00 2001 From: Alistair Coles Date: Wed, 8 Mar 2017 14:56:00 +0000 Subject: [PATCH] Document SAIO rsync service setup for ubuntu 16 SAIO docs do suggest using Ubuntu 14.04, but if using 16.04 then systemctl needs to be used to have rsync service restart on reboot. Change-Id: I4fb0d3d063df61fbdfca981f06911148f3c4dc04 --- doc/source/development_saio.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/source/development_saio.rst b/doc/source/development_saio.rst index bf21277b86..088dfbc134 100644 --- a/doc/source/development_saio.rst +++ b/doc/source/development_saio.rst @@ -241,10 +241,15 @@ Setting up rsync #. Start the rsync daemon - * On Ubuntu, run:: + * On Ubuntu 14.04, run:: sudo service rsync restart + * On Ubuntu 16.04, run:: + + sudo systemctl enable rsync + sudo systemctl start rsync + * On Fedora, run:: sudo systemctl restart xinetd.service