Skip to content

openSUSE/snapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

977e1a5 · Mar 19, 2025
Mar 19, 2025
Mar 12, 2025
Nov 5, 2024
Jul 8, 2024
Jan 10, 2025
Jan 28, 2025
Feb 7, 2024
Feb 4, 2025
Aug 8, 2022
Mar 7, 2025
Apr 17, 2024
Sep 26, 2024
Feb 18, 2025
Jan 29, 2025
Jun 7, 2024
Jan 29, 2025
Oct 21, 2024
Jan 29, 2025
Jan 3, 2024
Jan 10, 2020
Jan 10, 2020
Apr 7, 2016
Jan 10, 2011
Apr 16, 2024
Dec 18, 2024
Oct 13, 2016
Mar 21, 2023
Mar 31, 2023
Dec 4, 2018
Jan 10, 2025
Dec 17, 2024
Jan 17, 2025

Repository files navigation

Snapper

Snapper is a tool for Linux file system snapshot management. Apart from the obvious creation and deletion of snapshots it can compare snapshots and revert differences between them. In simple terms, this allows root and non-root users to view older versions of files and revert changes.

For more information visit snapper.io.

Development

For compiling and developing Snapper you need to setup the development environment first.

Development Environment

In the SUSE Linux Enterprise and openSUSE distributions you can install the needed packages by using these commands:

# install the basic development environment (SUSE Linux Enterprise, the SDK extension is needed)
sudo zypper install -t pattern SDK-C-C++
# install the basic development environment (openSUSE)
sudo zypper install -t pattern devel_C_C++
# install the extra packages for snapper development (both SLE and openSUSE)
sudo zypper install git libmount-devel dbus-1-devel libacl-devel \
  docbook-xsl-stylesheets libxml2-devel libbtrfs-devel

Building Snapper

You can download the sources and build Snapper by using these commands:

git clone git@github.com:<your_fork>/snapper.git
cd snapper
make -f Makefile.repo
# parallelize the build using more processors, use plain `make` if it does not work
make -j`nproc`

Installing and Running Snapper

To run the freshly built Snapper use this:

sudo make install
# kill the currently running DBus process if present
sudo killall snapperd
# try your changes (the DBus service is started automatically)
(sudo) snapper ...

Running Tests

Snapper includes some internal unit tests to avoid some bugs and regressions. The tests are located in the testsuite subdirectory and you can start them using the make check command.

There are also some additional tests in the testsuite-real subdirectory, but be careful. These tests really execute snapper commands and they can destroy your data! Run these tests only in a testing environment!

Releasing

  • Before releasing the Snapper package ensure that the changes made to the package are mentioned in the package/snapper.changes file, update also the dists/debian/changelog file.

  • Make sure the units tests still passes (see above).

  • When the version is increased then the Git repo has to be tagged, use the vX.Y.Z format for the tag. Also the filesystems:snapper OBS project has to be updated.

  • To create the package use command make package. Then use the common work-flow to submit the package to the build service. For openSUSE:Factory send at first the package to the devel project filesystems:snapper in OBS.

    Please note that this OBS project builds for more distributions so more metadata files have to be updated. See the OBS documentation for more info (cross distribution howto, Debian builds).