mirror of
https://github.com/unman/shaker.git
synced 2024-12-26 07:49:38 -05:00
Qubes print server - spec
This commit is contained in:
parent
7a03c456d8
commit
7e4a574de3
34
print.spec
Normal file
34
print.spec
Normal file
@ -0,0 +1,34 @@
|
||||
Name: sys-printer
|
||||
Version: 1.0
|
||||
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=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 15 2022 unman <unman@thirdeyesecurity.org> - 1.0
|
||||
- First Build
|
Loading…
Reference in New Issue
Block a user