mirror of
https://github.com/unman/shaker.git
synced 2024-10-01 01:25:41 -04:00
40 lines
976 B
RPMSpec
40 lines
976 B
RPMSpec
Name: 3isec-qubes-sys-printer
|
|
Version: 1.2
|
|
Release: 1%{?dist}
|
|
Summary: Salt a printer qube in Qubes
|
|
|
|
License: GPLv3+
|
|
SOURCE0: print
|
|
|
|
%description
|
|
Salt state to implement a printer qube
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
mkdir -p %{buildroot}/srv/salt
|
|
cp -rv %{SOURCE0}/ %{buildroot}/srv/salt
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
/srv/salt/print/*
|
|
|
|
%post
|
|
if [ $1 -eq 1 ]; then
|
|
qubesctl state.apply print.create
|
|
qubesctl --skip-dom0 --targets=template-printer state.apply print.install
|
|
qubesctl --skip-dom0 --targets=sys-printer state.apply print.configure
|
|
fi
|
|
|
|
%postun
|
|
if [ $1 -eq 0 ]; then
|
|
sed -i /qubes.Print/d /etc/qubes/policy.d/30-user.policy
|
|
fi
|
|
|
|
%changelog
|
|
* Sun May 22 2022 unman <unman@thirdeyesecurity.org> - 1.2
|
|
- Add template and package installation to post
|
|
* Sat May 21 2022 unman <unman@thirdeyesecurity.org> - 1.1
|
|
- Standardise package names to 3isec-
|
|
* Sun May 15 2022 unman <unman@thirdeyesecurity.org> - 1.0
|
|
- First Build
|