]> code.delx.au - monosys/blobdiff - README.md
package-lists: debian/desktop-gnome-software
[monosys] / README.md
index e4e73227f5022f63d22a49680453d1a8fe2bf8e4..6f72827b97eb004732bf9ee4a0f0ce434143dddb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,25 +1,4 @@
-# bsnap
+# monosys
 
-Manage snapshots for backups using LVM or btrfs. This is intended for use with [borg](https://www.borgbackup.org) or [rsync](https://rsync.samba.org).
+Monorepo for system configuration.
 
-## Usage
-
-Running `bsnap on` will do the following:
-- Create a new directory `/a` where the snapshots will be mounted.
-- Take snapshots as configured in your `/etc/fstab`.
-- Mount the snapshots into `/a`.
-
-At this point you can run something like [borg](https://www.borgbackup.org) or [rsync](https://rsync.samba.org) on `/a` to create your backup. Once that's completed you then run `bsnap off` to unmount, remove the snapshots and cleanup `/a`.
-
-You must configure your `/etc/fstab` by setting the second last column for each entry:
-- `0` -- no snapshot will be taken and the filesystem will not be mounted into `/a`
-- `1` -- no snapshot will be taken but the filesystem will be bind mounted into `/a`
-- `2` -- a snapshot will be taken and the snapshot will be mounted into `/a`
-
-```
-# Snapshot the LVM root filesystem
-/dev/mapper/vg-root  /      ext4  defaults  2 0
-
-# Mount it into /a so it's included in the backup without snapshotting it
-UUID="ABCD-1234"     /boot  vfat  defaults  1 0
-```