Add option to specify init script location
authorFina Wilke <code@felinira.net>
Sat, 16 Jul 2022 22:15:42 +0000 (00:15 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 8 Sep 2022 09:50:53 +0000 (10:50 +0100)
Also allows to disable the installation if desired

meson_options.txt
util/install_helper.sh
util/meson.build

index 43304d12907be09c4cb3d85333e5973741fe3dad..891ccdfbb2a099ee4aecf554356a80fe43f5922a 100644 (file)
@@ -4,6 +4,9 @@ option('disable-mtab', type : 'boolean', value : false,
 option('udevrulesdir', type : 'string', value : '',
        description: 'Where to install udev rules (if empty, query pkg-config(1))')
 
+option('initscriptdir', type : 'string', value : '/etc/init.d/',
+       description: 'Init script installation location (if empty, disable init script installation)')
+
 option('utils', type : 'boolean', value : true,
        description: 'Whether or not to build and install helper programs')
 
index cb649a73d98e7e24b4e03ef5f79b12148d203d5f..33f4a42f0a6ab757cdd7bb996671537bb6d0b554 100755 (executable)
@@ -10,6 +10,7 @@ sysconfdir="$1"
 bindir="$2"
 udevrulesdir="$3"
 useroot="$4"
+initscriptdir="$5"
 
 # Both sysconfdir and bindir are absolute paths (since they are joined
 # with --prefix in meson.build), but need to be interpreted relative
@@ -39,15 +40,14 @@ fi
 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}/etc/init.d/fuse3"
+if [ "$initscriptdir" != "" ]; then
+    install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \
+            "${DESTDIR}${initscriptdir}/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 ${DESTDIR}/etc/init.d/fuse3 init script"
+    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 ${DESTDIR}${initscriptdir}/init.d/fuse3 init script"
+    fi
 fi
-
-
index 78468706d8e17fe3997fe26afb6d0f9f9e6c057e..12028d59c768ade4f087f2f2ee56874ef2af5971 100644 (file)
@@ -24,6 +24,5 @@ meson.add_install_script('install_helper.sh',
                          join_paths(get_option('prefix'), get_option('sysconfdir')),
                          join_paths(get_option('prefix'), get_option('bindir')),
                          udevrulesdir,
-                         '@0@'.format(get_option('useroot')))
-
-
+                         '@0@'.format(get_option('useroot')),
+                         get_option('initscriptdir'))