~ubuntu-branches/ubuntu/hardy/fuse/hardy-security

« back to all changes in this revision

Viewing changes to lib/fuse_versionscript

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2007-08-04 08:09:00 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070804080900-m1e9xpk5eitzmelg
Tags: 2.7.0-1ubuntu1
* Resynchronise with Debian (LP: #128292). Remaining changes:
  - Don't install the init script; install the udev rule and the module
    configuration file instead.
  - debian/45-fuse.rules: set /dev/fuse group to fuse.
  - debian/fuse-utils.modprobe: module configuration file that mounts the
    control filesystem when fuse is loaded and unmounts it when fuse is
    unloaded, along with checking that the control FS is mounting before
    unmounting it.
  - debian/fuse-utils.install: add the udev rule, the module configuration
    file, and ulockmgr_server.
  - Load fuse on install, and set it so it gets loaded on reboot.
  - Move fusermount and ulockmgr_server to /bin and associated libraries
    to /lib.
* Use dpkg-query to fetch conffile md5sums rather than parsing
  /var/lib/dpkg/status directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
                fuse_teardown_compat22;
109
109
                fuse_unmount;
110
110
                fuse_unmount_compat22;
 
111
} FUSE_2.5;
 
112
 
 
113
FUSE_2.7 {
 
114
        global:
 
115
                fuse_fs_access;
 
116
                fuse_fs_bmap;
 
117
                fuse_fs_chmod;
 
118
                fuse_fs_chown;
 
119
                fuse_fs_create;
 
120
                fuse_fs_destroy;
 
121
                fuse_fs_fgetattr;
 
122
                fuse_fs_flush;
 
123
                fuse_fs_fsync;
 
124
                fuse_fs_fsyncdir;
 
125
                fuse_fs_ftruncate;
 
126
                fuse_fs_getattr;
 
127
                fuse_fs_getxattr;
 
128
                fuse_fs_init;
 
129
                fuse_fs_link;
 
130
                fuse_fs_listxattr;
 
131
                fuse_fs_lock;
 
132
                fuse_fs_mkdir;
 
133
                fuse_fs_mknod;
 
134
                fuse_fs_new;
 
135
                fuse_fs_open;
 
136
                fuse_fs_opendir;
 
137
                fuse_fs_read;
 
138
                fuse_fs_readdir;
 
139
                fuse_fs_readlink;
 
140
                fuse_fs_release;
 
141
                fuse_fs_releasedir;
 
142
                fuse_fs_removexattr;
 
143
                fuse_fs_rename;
 
144
                fuse_fs_rmdir;
 
145
                fuse_fs_setxattr;
 
146
                fuse_fs_statfs;
 
147
                fuse_fs_symlink;
 
148
                fuse_fs_truncate;
 
149
                fuse_fs_unlink;
 
150
                fuse_fs_utimens;
 
151
                fuse_fs_write;
 
152
                fuse_register_module;
 
153
                fuse_reply_iov;
 
154
                fuse_version;
111
155
 
112
156
        local:
113
 
                 *;
114
 
} FUSE_2.5;
 
157
                *;
 
158
} FUSE_2.6;