From 16d26fe55f930adccf72080b42c38a69baa9a237 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Mon, 25 Apr 2016 11:43:52 -0500 Subject: [PATCH] add configuration file for real --- snap-pac.conf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 snap-pac.conf diff --git a/snap-pac.conf b/snap-pac.conf new file mode 100644 index 0000000..4a93cb2 --- /dev/null +++ b/snap-pac.conf @@ -0,0 +1,19 @@ +# snap-pac configuration file + +# Snapper configurations of which you want to take pre/post snapshot set. +# Default is just the root configuration. Uses spaces between each configuration +# name. +CONFIGS="root" +#CONFIGS="root home" + +# The description of the pre/post snapshots. Default is the pacman command that +# called the hook +PRE_DESCRIPTION="$(ps -C pacman -o args=)" +POST_DESCRIPTION="$(ps -C pacman -o args=)" + +# Snapper cleanup algorithm to use. +CLEANUP_ALGORITHM="number" + +# Prefix of the file that contains the pre snapshot number. Appended by the name +# of the specific configuration. Generally shouldn't want to change this. +PREFILE_PREFIX="/usr/share/libalpm/hooks.bin/snap-pac/.pre"