summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_shadow_copy2.c
diff options
context:
space:
mode:
authorEd Plese <ed@edplese.com>2009-12-06 21:03:06 -0600
committerBjörn Jacke <bj@sernet.de>2010-01-21 08:32:02 +0100
commita5ca70a8676925a50ae014d25240726e70044aee (patch)
tree57fd09ce9580c0014be8fe75861c3ab642c1a26a /source3/modules/vfs_shadow_copy2.c
parent05cd30ba42e3468a102d791ddee65f36b1b4161c (diff)
downloadsamba-a5ca70a8676925a50ae014d25240726e70044aee.tar.gz
samba-a5ca70a8676925a50ae014d25240726e70044aee.tar.bz2
samba-a5ca70a8676925a50ae014d25240726e70044aee.zip
Add localtime parameter to shadow_copy2.
Diffstat (limited to 'source3/modules/vfs_shadow_copy2.c')
-rw-r--r--source3/modules/vfs_shadow_copy2.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c
index 4770620e9f..b26bf272fe 100644
--- a/source3/modules/vfs_shadow_copy2.c
+++ b/source3/modules/vfs_shadow_copy2.c
@@ -42,6 +42,9 @@
4) vanity naming for snapshots. Snapshots can be named in any
format compatible with str[fp]time conversions.
+ 5) time stamps in snapshot names can be represented in localtime
+ rather than UTC.
+
Module options:
shadow:snapdir = <directory where snapshots are kept>
@@ -81,6 +84,10 @@
be compatible with the conversion specifications recognized
by str[fp]time. The default value is "@GMT-%Y.%m.%d-%H.%M.%S".
+ shadow:localtime = yes/no (default is no)
+
+ This is an optional parameter that indicates whether the
+ snapshot names are in UTC/GMT or the local time.
The following command would generate a correctly formatted directory name
@@ -99,6 +106,7 @@ static int vfs_shadow_copy2_debug_level = DBGC_VFS;
#define SHADOW_COPY2_DEFAULT_SORT NULL
#define SHADOW_COPY2_DEFAULT_FORMAT "@GMT-%Y.%m.%d-%H.%M.%S"
+#define SHADOW_COPY2_DEFAULT_LOCALTIME false
/*
make very sure it is one of our special names
@@ -145,6 +153,13 @@ static char *shadow_copy2_snapshot_to_gmt(TALLOC_CTX *mem_ctx,
}
DEBUG(10, ("shadow_copy2_snapshot_to_gmt: match %s: %s\n", fmt, name));
+ if (lp_parm_bool(SNUM(handle->conn), "shadow", "localtime",
+ SHADOW_COPY2_DEFAULT_LOCALTIME))
+ {
+ timestamp.tm_isdst = -1;
+ timestamp_t = mktime(&timestamp);
+ gmtime_r(&timestamp_t, &timestamp);
+ }
strftime(gmt, sizeof(gmt), SHADOW_COPY2_GMT_FORMAT, &timestamp);
return talloc_strdup(mem_ctx, gmt);
@@ -437,6 +452,13 @@ static char *convert_shadow2_name(vfs_handle_struct *handle, const char *fname,
/* relpath is the remaining portion of the path after the @GMT-xxx */
+ if (lp_parm_bool(SNUM(handle->conn), "shadow", "localtime",
+ SHADOW_COPY2_DEFAULT_LOCALTIME))
+ {
+ timestamp_t = timegm(&timestamp);
+ localtime_r(&timestamp_t, &timestamp);
+ }
+
strftime(snapshot, MAXPATHLEN, fmt, &timestamp);
baselen = strlen(basedir);