Displaying 3 results from an estimated 3 matches for "svpath".
Did you mean:
vpath
2014 Aug 21
1
Proper sysvol replication solution...
...C
on your domain. Once done, you can create cron jobs to sync each server,
or use a script like mine below. This script is on my primary DC. I
actually only have two DC's, but I added more as an example here.
#!/bin/bash
SERVERLIST="dc02.domain.lan dc03.domain.lan dc04.domain.lan"
SVPATH="/path/to/sysvol"
# Synchronize all of the domain controllers
for sLoop in ${SERVERLIST}
do
unison -batch "${SVPATH}" "ssh://${sLoop}/${SVPATH}"
done
exit 0
Now set that script to run in a cron job and you're golden. You could
also setup "incrond"...
2013 Nov 16
16
[PATCH] BTRFS-PROG: recursively subvolume snapshot and delete
Hi All,
the following patches implement the recursively snapshotting and
deleting of a subvolume.
To snapshot recursively you must pass the -R switch:
# btrfs subvolume create sub1
Create subvolume ''./sub1''
# btrfs subvolume create sub1/sub2
Create subvolume ''sub1/sub2''
# btrfs subvolume snapshot -R sub1 sub1-snap
Create a snapshot of
2012 Feb 29
15
[RFC] [PATCH] Add btrfs autosnap feature
From: anand jain <anand.jain@oracle.com>
Anand Jain (1):
[RFC] Add btrfs autosnap feature
Makefile | 6 +-
autosnap.c | 1553 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
autosnap.h | 81 +++
btrfs-list.c | 140 +++++-
btrfs.c | 46 ++-
btrfs_cmds.c | 186 +++++++-
btrfs_cmds.h | 3 +-
scrub.c | 1 +
8 files changed, 1982 insertions(+), 34