-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set executable bits in RPM spec; make wildcard less greedy
- Loading branch information
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,15 +71,19 @@ install -m 644 launcher/sdw_notify/*.py %{buildroot}/opt/securedrop/launcher/sdw | |
install -m 644 launcher/sdw_util/*.py %{buildroot}/opt/securedrop/launcher/sdw_util/ | ||
%files | ||
%doc README.md LICENSE | ||
%attr(755, root, root) /opt/securedrop/launcher/sdw-launcher.py | ||
%attr(755, root, root) /opt/securedrop/launcher/sdw-notify.py | ||
%attr(755, root, root) %{_bindir}/securedrop-update | ||
%attr(755, root, root) %{_bindir}/securedrop-admin | ||
%{python3_sitelib}/securedrop_workstation_dom0_config* | ||
%{_datadir}/%{name} | ||
%{_bindir}/securedrop-update | ||
%{_bindir}/securedrop-admin | ||
/opt/securedrop/launcher/sdw_updater_gui/*.py | ||
/opt/securedrop/launcher/sdw_notify/*.py | ||
/opt/securedrop/launcher/sdw_util/*.py | ||
/srv/salt/sd* | ||
/srv/salt/dom0-xfce-desktop-file.j2 | ||
/srv/salt/securedrop-* | ||
/srv/salt/fpf* | ||
/opt/securedrop/* | ||
|
||
%post | ||
find /srv/salt -maxdepth 1 -type f -iname '*.top' \ | ||
|
@@ -88,8 +92,9 @@ find /srv/salt -maxdepth 1 -type f -iname '*.top' \ | |
| xargs qubesctl top.enable > /dev/null | ||
|
||
%changelog | ||
* Fri Feb 07 2020 SecureDrop Team <[email protected]> - 0.1.3 | ||
* Mon Feb 10 2020 SecureDrop Team <[email protected]> - 0.1.3 | ||
- Adds sdw-notify script | ||
- Sets executable bits within package specification | ||
|
||
* Mon Feb 03 2020 Mickael E. <[email protected]> - 0.1.2 | ||
- Provides dev/staging/prod split logic. | ||
|