summaryrefslogtreecommitdiffstats
path: root/source3/modules/wscript_build
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@samba.org>2014-06-27 15:31:35 +0200
committerJeremy Allison <jra@samba.org>2014-06-30 19:25:15 +0200
commit9261f7c6a0caae171eab5a499bae4b1f54c3a452 (patch)
treec1c26ec8f71fe7ef6e87993f87f4e3622a1cfe57 /source3/modules/wscript_build
parent654ca0590aa410a7a889003f4bc219f7193a7447 (diff)
downloadsamba-9261f7c6a0caae171eab5a499bae4b1f54c3a452.tar.gz
samba-9261f7c6a0caae171eab5a499bae4b1f54c3a452.tar.xz
samba-9261f7c6a0caae171eab5a499bae4b1f54c3a452.zip
vfs: add vfs_snapper module
Provides an interface for accessing snapshots exposed by Snapper. The module communicates with snapperd on the local machine using the D-Bus interface. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r--source3/modules/wscript_build8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build
index 2d5cc6dc4d..57daebef41 100644
--- a/source3/modules/wscript_build
+++ b/source3/modules/wscript_build
@@ -489,3 +489,11 @@ bld.SAMBA3_MODULE('vfs_worm',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_worm'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_worm'))
+
+bld.SAMBA3_MODULE('vfs_snapper',
+ subsystem='vfs',
+ source='vfs_snapper.c',
+ deps='samba-util dbus-1',
+ init_function='',
+ internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_snapper'),
+ enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_snapper'))