From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Fri, 5 Nov 2021 17:19:55 +0000 (+0000) Subject: Update RELEASE_NOTES.md X-Git-Tag: 1.2~83^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3774f8a0f288daa10e853fd24ac14e3fdc759548;p=thirdparty%2Fnqptp.git Update RELEASE_NOTES.md --- diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b118a0c..d57595c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,17 @@ ## Version: 1.1-dev-51-g812326a ***Pesky Change You Can't Ignore*** -A change has been made to where the `nqptp` `systemd` service file is placed. If you are updating from a previous version of `nqptp`, please remove the service file `nqptp.service` from the directory `/lib/systemd/system` (you'll need superuser privileges). A new service file will be installed in the correct location -- `/usr/local/lib/systemd/system` in Ubuntu 20.04 and Raspbian OS (Buster) -- during the `# make install` step. +A change has been made to where the `nqptp` `systemd` service file is placed. If you are updating from a previous version of `nqptp`, please do the following before you update: +1. Disable the `nqptp` service as follows: +``` +# systemctl disable nqptp +``` +2. Remove the service file `nqptp.service` from the directory `/lib/systemd/system` (you'll need superuser privileges). A new service file will be installed in the correct location -- `/usr/local/lib/systemd/system` in Ubuntu 20.04 and Raspbian OS (Buster) -- during the `# make install` step. + +After updating, re-enable the `nqptp` service as follows: +``` +# systemctl enable nqptp +``` **Enhancement** * Further modify `install-exec-hook` to also use the standard `$(libdir)` variable instead of a fixed location. Thanks to [FW](https://github.com/fwcd).