.SH "DESCRIPTION"
.LP
Snapper is a command\-line program for filesystem snapshot management. It can
-create, delete and compare snapshots and undo changes between
-snapshots. Supported filesystems are btrfs and ext4.
+create, delete and compare snapshots and undo changes done between snapshots.
+.LP
+Snapper never modifies the content of snapshots. Thus snapper creates
+read-only snapshots. Supported filesystems are btrfs and ext4.
.SH CONCEPTS
+-------------------------------------------------------------------
+Fri Oct 21 11:34:27 CEST 2011 - aschnell@suse.de
+
+- create read-only btrfs snapshots
+
-------------------------------------------------------------------
Wed Oct 12 15:12:41 CEST 2011 - aschnell@suse.de
void
Btrfs::createSnapshot(unsigned int num) const
{
- SystemCmd cmd(BTRFSBIN " subvolume snapshot " + quote(subvolume) + " " +
+ SystemCmd cmd(BTRFSBIN " subvolume snapshot -r " + quote(subvolume) + " " +
quote(snapshotDir(num)));
if (cmd.retcode() != 0)
throw CreateSnapshotFailedException();