First release
This commit is contained in:
parent
9329bc6a49
commit
cf9d2f5f35
51
mod_security_crs_plugin_roundcube.spec
Normal file
51
mod_security_crs_plugin_roundcube.spec
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
%global plugin_id roundcube
|
||||||
|
%global plugin_name %{plugin_id}-rule-exclusions
|
||||||
|
|
||||||
|
Name: mod_security_crs_plugin_%{gsub %{plugin_id} - _}
|
||||||
|
Version: 1.0.2
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: CRS Roundcube rule exclusions plugin
|
||||||
|
|
||||||
|
License: GPLv2
|
||||||
|
URL: https://github.com/EsadCetiner/%{plugin_name}-plugin/
|
||||||
|
Source0: https://github.com/EsadCetiner/%{plugin_name}-plugin//archive/refs/tags/v%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: mod_security_crs > 4.2.0-2
|
||||||
|
|
||||||
|
%description
|
||||||
|
This CRS plugin contains rule exclusions to fix false positives when using Roundcube Webmail
|
||||||
|
with the OWASP Core Rule Set.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{plugin_name}-plugin-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{__install} -Dm0644 plugins/%{plugin_name}-before.conf %{buildroot}%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-before.conf
|
||||||
|
%{__install} -m0644 plugins/%{plugin_name}-config.conf %{buildroot}%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-config.conf.example
|
||||||
|
%{__install} -Dm0644 plugins/%{plugin_name}-config.conf %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-config.conf
|
||||||
|
|
||||||
|
%post
|
||||||
|
if [ $1 == 1 ]; then
|
||||||
|
%{__ln_s} %{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-before.conf %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ $1 == 0 ]; then
|
||||||
|
%{__rm} %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%doc README.md
|
||||||
|
%config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-config.conf
|
||||||
|
%ghost %config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
||||||
|
%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Jul 14 2024 Daniel Demus <daniel-github@demus.dk>
|
||||||
|
- First release
|
Loading…
Reference in New Issue
Block a user