<div dir="ltr">Hi,<div><br></div><div style>If I am not mistaken, moving "getty@tty1.service" and "remote-fs.target" to $systemunitdir will cause them to be shown as "disabled" on "systemctl status .unit" even though they are enabled. These unit files have "[Install]" sections and when there is "[Install]" section on them, systemd will look for a symbolic link in /etc to determine if the unit is enabled/disabled. </div>

<div style><br></div><div style>If the mentioned unit files are moving to $systemunitdir, then their [Install] section needs to be removed as well so systemd can treat them as "static" unit files.</div><div style>

<br></div><div style>Thanks</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Feb 12, 2013 at 1:34 AM, Auke Kok <span dir="ltr"><<a href="mailto:auke-jan.h.kok@intel.com" target="_blank">auke-jan.h.kok@intel.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Contrary to it's own packaging guidelines, these symlinks are created<br>
in /etc/. While technically not a problem, this makes it harder<br>
for folks installing from git that want to override these settings<br>
(either masking or otherwise).<br>
<br>
Moving the links to $(systemunitdir) resolves.<br>
---<br>
 Makefile.am | 8 ++++----<br>
 1 file changed, 4 insertions(+), 4 deletions(-)<br>
<br>
diff --git a/Makefile.am b/Makefile.am<br>
index 2cec04a..8945cfa 100644<br>
--- a/Makefile.am<br>
+++ b/Makefile.am<br>
@@ -3622,8 +3622,8 @@ USER_UNIT_ALIASES += \<br>
        $(systemunitdir)/sound.target sound.target<br>
<br>
 GENERAL_ALIASES += \<br>
-       $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \<br>
-       $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \<br>
+       $(systemunitdir)/remote-fs.target $(systemunitdir)/multi-user.target.wants/remote-fs.target \<br>
+       $(systemunitdir)/getty@.service $(systemunitdir)/getty.target.wants/getty@tty1.service \<br>
        $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \<br>
        ../system-services/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service<br>
<br>
@@ -3650,8 +3650,8 @@ INSTALL_DIRS += \<br>
        \<br>
        $(userunitdir) \<br>
        $(pkgsysconfdir)/system \<br>
-       $(pkgsysconfdir)/system/multi-user.target.wants \<br>
-       $(pkgsysconfdir)/system/getty.target.wants \<br>
+       $(systemunitdir)/multi-user.target.wants \<br>
+       $(systemunitdir)/getty.target.wants \<br>
        $(pkgsysconfdir)/user \<br>
        $(dbussessionservicedir) \<br>
        $(sysconfdir)/xdg/systemd<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.8.1<br>
<br>
_______________________________________________<br>
systemd-devel mailing list<br>
<a href="mailto:systemd-devel@lists.freedesktop.org">systemd-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/systemd-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/systemd-devel</a><br>
</font></span></blockquote></div><br></div>