Install init script in /etc/ instead of $sysconfdir
authorNikolaus Rath <Nikolaus@rath.org>
Tue, 9 Jul 2019 12:13:50 +0000 (05:13 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 9 Jul 2019 12:15:09 +0000 (05:15 -0700)
sysconfdir defaults to /usr/local/etc which is almost always the wrong
choice.

Fixes: #427
ChangeLog.rst
util/install_helper.sh

index ce1648e5b14ed8c75604d1bc952445882cbb75ba..49b8e4fd80b884f082419cdaf3982977b9ecbbf8 100644 (file)
@@ -1,3 +1,9 @@
+Unreleased Changes
+==================
+
+* The init script is now installed to /etc/ rather than /usr/local/etc
+  by default.
+
 libfuse 3.6.1 (2019-06-13)
 ==========================
 
index 30f6227b9e96495c7e75991d53fad925359af208..cb649a73d98e7e24b4e03ef5f79b12148d203d5f 100755 (executable)
@@ -40,14 +40,14 @@ install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \
         "${DESTDIR}${udevrulesdir}/99-fuse3.rules"
 
 install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \
-        "${DESTDIR}${sysconfdir}/init.d/fuse3"
+        "${DESTDIR}/etc/init.d/fuse3"
 
 
 if test -x /usr/sbin/update-rc.d && test -z "${DESTDIR}"; then
     /usr/sbin/update-rc.d fuse3 start 34 S . start 41 0 6 . || /bin/true
 else
     echo "== FURTHER ACTION REQUIRED =="
-    echo "Make sure that your init system will start the ${sysconfdir}/init.d/fuse3 init script"
+    echo "Make sure that your init system will start the ${DESTDIR}/etc/init.d/fuse3 init script"
 fi