1
0
mirror of https://github.com/openSUSE/snapper.git synced 2026-02-05 15:46:00 +01:00
Files
snapper/data/zypp-plugin.conf
Martin Vidner 67d97711ed Use snapper::Regex instead of boost::regex (both use POSIX ERE).
Document the syntax in the conf file
2019-12-17 11:22:26 +01:00

29 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<snapper-zypp-plugin-conf>
<!--
List of solvables. If the zypp commit transaction includes any solvable
listed below, snapper will create pre and post snapshots.
Shell-style wildcards, match="w"
Must cover the whole solvable name: the pattern "systemd*" matches
systemd-devel, but "systemd" does not.
Regular Expressions, match="re"
POSIX Extended Regular Expression Syntax (man 7 regex).
They are automatically anchored at the beginning but not at the
end, so "dracut" matches dracut-tools but not plymouth-dracut.
If any of the matching solvables is marked as important, the snapshots
are also marked as important.
-->
<solvables>
<solvable match="w" important="true">kernel-*</solvable>
<solvable match="w" important="true">dracut</solvable>
<solvable match="w" important="true">glibc</solvable>
<solvable match="w" important="true">systemd*</solvable>
<solvable match="w" important="true">udev</solvable>
<solvable match="w">*</solvable>
</solvables>
</snapper-zypp-plugin-conf>