We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the service file is installed to /lib/systemd/system/, but this directory is not meant for user defined services.
/lib/systemd/system/
Custom services should be installed to /etc/systemd/system/ instead.
/etc/systemd/system/
See https://www.freedesktop.org/software/systemd/man/systemd.unit.html
The text was updated successfully, but these errors were encountered:
@dbrgn: oh very good point; after MakeZurich, I will try to change this without breaking existing installations :)
Sorry, something went wrong.
/etc/systemd/system overrides /lib/systemd/system :) Or you could remove the one in /lib if it exists before creating the one in /etc.
Actually to be perfectly correct, the target directory should be the value returned by pkg-config systemd --variable=systemdsystemunitdir: https://www.freedesktop.org/software/systemd/man/systemd.html#Directories
pkg-config systemd --variable=systemdsystemunitdir
No branches or pull requests
Currently the service file is installed to
/lib/systemd/system/
, but this directory is not meant for user defined services.Custom services should be installed to
/etc/systemd/system/
instead.See https://www.freedesktop.org/software/systemd/man/systemd.unit.html
The text was updated successfully, but these errors were encountered: