Add default file for duperemove, create directory meant to store hash files

This commit is contained in:
Kyle Gospodnetich
2023-01-03 17:55:45 -08:00
parent 445bdc768f
commit 4e8b45f856
2 changed files with 6 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ ARG FEDORA_MAJOR_VERSION=37
FROM quay.io/fedora/fedora-coreos:stable
COPY etc /etc
RUN mkdir -p /var/lib/duperemove
# Remove undesired packages
RUN rpm-ostree override remove \

5
etc/default/duperemove Normal file
View File

@@ -0,0 +1,5 @@
# Dir to store hash files. Each instance has own, named by $(systemd-escape <instance>).hashfile
HashDir=/var/lib/duperemove
# Additional options for duperemove binary
OPTIONS="--skip-zeroes --hash=xxhash"