Add init script
authorMiklos Szeredi <miklos@szeredi.hu>
Sun, 1 Oct 2006 13:46:02 +0000 (13:46 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Sun, 1 Oct 2006 13:46:02 +0000 (13:46 +0000)
13 files changed:
ChangeLog
NEWS
configure.in
example/Makefile.am
example/fusexmp.c
example/fusexmp_fh.c
example/hello.c
example/hello_ll.c
example/null.c
kernel/configure.ac
lib/Makefile.am
util/Makefile.am
util/init_script [new file with mode: 0755]

index c5858a0c6934c88f1d171a7d065968f1a315c77f..0478639e685b856d29e3c844f81d5246ec98a1dd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Add init script to insert fuse module and mount the control
+       filesystem.  The script is installed as /etc/init.d/fuse and on
+       debian based systems (where update-rc.d is available) symlinks
+       from /etc/rc*.d/ are also installed.
+
+       * Include '#define FUSE_USE_VERSION=XX' into examples so they
+       become more self contained.
+
 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
 
        * API changes:
diff --git a/NEWS b/NEWS
index 70503dbde7ce0a3f4bdc052125820270fe9ccba7..a41c92f01b7665333e204236d26d62267e2bda1c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ What is new in 2.6
 
  - Building module for Linux kernels earlier than 2.6.9 not supported
 
+ - Allow block device based filesystems to support swap files
+
 What is new in 2.5
 
  - Merge library part of FreeBSD port
index a20f2b7ddee01ae356cbcaa4dfbe114fa07f91d7..ec02ea4e74a75eceef18f41e7a693aaf2c3fcb36 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 2.6.0-rc1)
+AC_INIT(fuse, 2.6.0-rc2)
 AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(include/config.h)
@@ -21,7 +21,6 @@ esac
 if test "$ac_env_CFLAGS_set" != set; then
        CFLAGS="-Wall -W -g -O2"
 fi
-CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DFUSE_USE_VERSION=26"
 
 AC_ARG_ENABLE(kernel-module,
        [  --enable-kernel-module  Compile kernel module ])
@@ -77,6 +76,10 @@ if test -z "$UDEV_RULES_PATH"; then
        UDEV_RULES_PATH=/etc/udev/rules.d
 fi
 AC_SUBST(UDEV_RULES_PATH)
+if test -z "$INIT_D_PATH"; then
+       INIT_D_PATH=/etc/init.d
+fi
+AC_SUBST(INIT_D_PATH)
 
 AC_SUBST(subdirs2)
 
index 9fe35e8f4d7c290e19f83ddaf3dcb2e3b7af61db..469dcb4b4a3eab06f2ba3a93a06097ffd59d82ca 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
-AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include -D_FILE_OFFSET_BITS=64 -D_REENTRANT
 noinst_PROGRAMS = fusexmp fusexmp_fh null hello hello_ll
 
 LDADD = ../lib/libfuse.la -lpthread
index b32e236165635c03396f0926f5488fbe949d3e52..b086235c2e17da41c93b87d43cc895187eeb36f4 100644 (file)
@@ -4,8 +4,12 @@
 
     This program can be distributed under the terms of the GNU GPL.
     See the file COPYING.
+
+    gcc -Wall `pkg-config fuse --cflags --libs` fusexmp.c -o fusexmp
 */
 
+#define FUSE_USE_VERSION 26
+
 #include <config.h>
 
 #ifdef linux
index 2ad1a509a631fedcd059a8ce62435d758b32f5eb..c10044c4292d7b6e4aedea848db9bcc15cbaf2a2 100644 (file)
@@ -4,8 +4,12 @@
 
     This program can be distributed under the terms of the GNU GPL.
     See the file COPYING.
+
+    gcc -Wall `pkg-config fuse --cflags --libs` fusexmp_fh.c -o fusexmp_fh
 */
 
+#define FUSE_USE_VERSION 26
+
 #include <config.h>
 
 #define _GNU_SOURCE
index f717c3498347661808c6a23754113b3ea2c4429c..7a1cdb59e79554c0e399038207395f02e9ed4e0f 100644 (file)
@@ -4,8 +4,12 @@
 
     This program can be distributed under the terms of the GNU GPL.
     See the file COPYING.
+
+    gcc -Wall `pkg-config fuse --cflags --libs` hello.c -o hello
 */
 
+#define FUSE_USE_VERSION 26
+
 #include <fuse.h>
 #include <stdio.h>
 #include <string.h>
index dbe141c1f23efa551d21b36c698b90b0e98d036b..934e9a7205fcc8602d1eb9a02e407a4a7a7a9130 100644 (file)
@@ -4,8 +4,12 @@
 
     This program can be distributed under the terms of the GNU GPL.
     See the file COPYING.
+
+    gcc -Wall `pkg-config fuse --cflags --libs` hello_ll.c -o hello_ll
 */
 
+#define FUSE_USE_VERSION 26
+
 #include <fuse_lowlevel.h>
 #include <stdio.h>
 #include <stdlib.h>
index eda843a5fc5590a0bcad547504971f50dc1ee5ca..1ab6573a44be1cdfd5aca4a17be7093463bc5ca7 100644 (file)
@@ -4,8 +4,12 @@
 
     This program can be distributed under the terms of the GNU GPL.
     See the file COPYING.
+
+    gcc -Wall `pkg-config fuse --cflags --libs` null.c -o null
 */
 
+#define FUSE_USE_VERSION 26
+
 #include <fuse.h>
 #include <string.h>
 #include <unistd.h>
index 67049b5b79ee8165a7182b901cabe35d5d1135ce..d0ebcc8b32be767358e73f805c46c7740ca17589 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(fuse-kernel, 2.6.0-rc1)
+AC_INIT(fuse-kernel, 2.6.0-rc2)
 AC_CONFIG_HEADERS([config.h])
 
 AC_PROG_INSTALL
index 87e323a78a27fd9e51300e207339c9991199b273..1ffe33077bdb52c1048f14612c66070b03ebb3eb 100644 (file)
@@ -1,6 +1,8 @@
 ## Process this file with automake to produce Makefile.in
 
-AM_CPPFLAGS = -I$(top_srcdir)/include -DFUSERMOUNT_DIR=\"$(bindir)\"
+AM_CPPFLAGS = -I$(top_srcdir)/include -DFUSERMOUNT_DIR=\"$(bindir)\" \
+ -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DFUSE_USE_VERSION=26
+
 lib_LTLIBRARIES = libfuse.la libulockmgr.la
 
 if BSD
index 8e8db2ac6c7973732fabfca9a05834603ea62f4d..d963e81461de2fab4ab433db7857c7f8304bb912 100644 (file)
@@ -16,14 +16,21 @@ install-exec-hook:
                mknod $(DESTDIR)/dev/fuse -m 0666 c 10 229; \
        fi
 
-EXTRA_DIST = mount.fuse udev.rules
+EXTRA_DIST = mount.fuse udev.rules init_script
 
 MOUNT_FUSE_PATH = @MOUNT_FUSE_PATH@
 UDEV_RULES_PATH = @UDEV_RULES_PATH@
+INIT_D_PATH = @INIT_D_PATH@
 
 install-exec-local:
        $(mkdir_p) $(DESTDIR)$(MOUNT_FUSE_PATH)
        $(INSTALL_PROGRAM) $(srcdir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
+       $(mkdir_p) $(DESTDIR)$(INIT_D_PATH)
+       $(INSTALL_PROGRAM) $(srcdir)/init_script $(DESTDIR)$(INIT_D_PATH)/fuse
+       @if test -x /usr/sbin/update-rc.d; then \
+               echo "/usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 ."; \
+               /usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 .; \
+       fi
 
 install-data-local:
        $(mkdir_p) $(DESTDIR)$(UDEV_RULES_PATH)
@@ -32,3 +39,8 @@ install-data-local:
 uninstall-local:
        rm -f $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
        rm -f $(DESTDIR)$(UDEV_RULES_PATH)/60-fuse.rules
+       rm -f $(DESTDIR)$(INIT_D_PATH)/fuse
+       @if test -x /usr/sbin/update-rc.d; then \
+               echo "/usr/sbin/update-rc.d fuse remove"; \
+               /usr/sbin/update-rc.d fuse remove; \
+       fi
diff --git a/util/init_script b/util/init_script
new file mode 100755 (executable)
index 0000000..ed964cb
--- /dev/null
@@ -0,0 +1,53 @@
+#! /bin/sh
+#
+# fuse         Init script for Filesystem in Userspace
+#
+# Author:      Miklos Szeredi <miklos@szeredi.hu>
+
+set -e
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+SCRIPTNAME=/etc/init.d/fuse
+DESC="FUSE"
+MOUNTPOINT=/sys/fs/fuse/connections
+
+# Gracefully exit if the package has been removed.
+test -x `which fusermount` || exit 0
+
+error()
+{
+       echo "Error $1" >&2
+       exit 1
+}
+
+case "$1" in
+  start)
+       echo -n "Starting $DESC: "
+       if ! grep -qw fuse /proc/filesystems; then
+               modprobe fuse >/dev/null 2>&1 || error "loading fuse module"
+       fi
+       if grep -qw fusectl /proc/filesystems && \
+          ! grep -qw $MOUNTPOINT /proc/mounts; then
+               mount -t fusectl none $MOUNTPOINT >/dev/null 2>&1 || \
+                       error "mounting control filesystem"
+       fi
+       echo "done."
+       ;;
+  stop)
+       echo -n "Stopping $DESC: "
+       if grep -qw $MOUNTPOINT /proc/mounts; then
+               umount $MOUNTPOINT >/dev/null 2>&1 || \
+                       error "unmounting control filesystem"
+       fi
+       if grep -qw "^fuse" /proc/modules; then
+               rmmod fuse >/dev/null 2>&1 || error "unloading fuse module"
+       fi
+       echo "done."
+       ;;
+  *)
+       echo "Usage: $SCRIPTNAME {start|stop}" >&2
+       exit 1
+       ;;
+esac
+
+exit 0