package created using the webbuild interface [release 1.5.0-1mamba;Sun Oct 06 2024]

This commit is contained in:
Silvan Calarco 2024-10-10 20:55:28 +02:00
parent e0dac0e93d
commit 9345401a45
2 changed files with 43 additions and 0 deletions

View File

@ -1,2 +1,3 @@
# zfs-prune-snapshots # zfs-prune-snapshots
Remove snapshots from one or more zpools that match given criteria.

42
zfs-prune-snapshots.spec Normal file
View File

@ -0,0 +1,42 @@
Name: zfs-prune-snapshots
Version: 1.5.0
Release: 1mamba
Summary: Remove snapshots from one or more zpools that match given criteria
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://daveeddy.com/2015/12/05/automatic-zfs-snapshots-and-backups/
Source: https://github.com/bahamas10/zfs-prune-snapshots.git/v%{version}/zfs-prune-snapshots-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
Requires: zfs-tools
%description
Remove snapshots from one or more zpools that match given criteria.
#% debug_package
%prep
%setup -q
%build
%make PREFIX=%{_prefix}
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall PREFIX=%{_prefix}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/zfs-prune-snapshots
%{_mandir}/man1/zfs-prune-snapshots.1*
%doc LICENSE
%changelog
* Sun Oct 06 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.0-1mamba
- package created using the webbuild interface