2012-02-06 23:32:16 +00:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")}
|
|
|
|
|
2011-01-07 15:38:25 +00:00
|
|
|
Summary: A firewall daemon with D-BUS interface providing a dynamic firewall
|
|
|
|
Name: firewalld
|
2012-08-07 11:25:11 +00:00
|
|
|
Version: 0.2.6
|
|
|
|
Release: 1%{?dist}
|
2011-01-07 15:38:25 +00:00
|
|
|
URL: http://fedorahosted.org/firewalld
|
|
|
|
License: GPLv2+
|
|
|
|
ExclusiveOS: Linux
|
|
|
|
Group: System Environment/Base
|
2012-02-06 23:32:16 +00:00
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
2011-01-07 15:38:25 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
Source0: https://fedorahosted.org/released/firewalld/%{name}-%{version}.tar.bz2
|
2012-08-07 11:25:11 +00:00
|
|
|
Patch0: firewalld-0.2.6-MDNS-default.patch
|
2011-01-07 15:38:25 +00:00
|
|
|
BuildRequires: desktop-file-utils
|
|
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: intltool
|
2012-02-07 11:05:54 +00:00
|
|
|
# glib2-devel is needed for gsettings.m4
|
|
|
|
BuildRequires: glib2, glib2-devel
|
2011-09-09 18:52:24 +00:00
|
|
|
BuildRequires: systemd-units
|
2012-02-06 23:32:16 +00:00
|
|
|
Requires: dbus-python
|
|
|
|
Requires: python-slip-dbus >= 0.2.7
|
2012-08-07 11:25:11 +00:00
|
|
|
Requires: python-decorator
|
|
|
|
Requires: pygobject3
|
2012-02-06 23:32:16 +00:00
|
|
|
Requires: iptables, ebtables
|
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(preun): chkconfig
|
2011-09-09 18:52:24 +00:00
|
|
|
Requires(post): systemd-sysv
|
|
|
|
Requires(post): systemd-units
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
Requires(postun): systemd-units
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
firewalld is a firewall service daemon that provides a dynamic customizable
|
|
|
|
firewall with a D-BUS interface.
|
|
|
|
|
|
|
|
%package -n firewall-applet
|
|
|
|
Summary: Firewall panel applet
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2012-08-07 11:25:11 +00:00
|
|
|
Requires: firewall-config = %{version}-%{release}
|
2011-01-07 15:38:25 +00:00
|
|
|
Requires: hicolor-icon-theme
|
2012-04-20 19:16:48 +00:00
|
|
|
Requires: gtk3
|
|
|
|
Requires: pygobject3
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%description -n firewall-applet
|
|
|
|
The firewall panel applet provides a status information of firewalld and also
|
|
|
|
the firewall settings.
|
|
|
|
|
2012-08-07 11:25:11 +00:00
|
|
|
%package -n firewall-config
|
|
|
|
Summary: Firewall configuration application
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: hicolor-icon-theme
|
|
|
|
Requires: pygtk2
|
|
|
|
Requires: pygtk2-libglade
|
|
|
|
Requires: gtk2 >= 2.6
|
|
|
|
|
|
|
|
%description -n firewall-config
|
|
|
|
The firewall configuration application provides an configuration interface for
|
|
|
|
firewalld.
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-08-07 11:36:56 +00:00
|
|
|
%patch0 -p1
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%build
|
2012-02-07 11:05:54 +00:00
|
|
|
./autogen.sh
|
|
|
|
%configure --with-systemd-unitdir=%{_unitdir}
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%install
|
2012-02-06 23:32:16 +00:00
|
|
|
rm -rf %{buildroot}
|
2011-01-07 15:38:25 +00:00
|
|
|
|
2012-02-06 23:32:16 +00:00
|
|
|
make install DESTDIR=%{buildroot}
|
2011-09-09 18:52:24 +00:00
|
|
|
|
2011-01-07 15:38:25 +00:00
|
|
|
desktop-file-install --delete-original \
|
|
|
|
--dir %{buildroot}%{_datadir}/applications \
|
|
|
|
%{buildroot}%{_datadir}/applications/firewall-applet.desktop
|
2012-08-07 11:25:11 +00:00
|
|
|
desktop-file-install --delete-original \
|
|
|
|
--dir %{buildroot}%{_datadir}/applications \
|
|
|
|
%{buildroot}%{_datadir}/applications/firewall-config.desktop
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%find_lang %{name} --all-name
|
|
|
|
|
2012-02-06 23:32:16 +00:00
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
2011-01-07 15:38:25 +00:00
|
|
|
%post
|
2012-02-06 23:32:16 +00:00
|
|
|
if [ $1 -eq 1 ] ; then # Initial installation
|
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
|
/bin/systemctl enable firewalld.service >/dev/null 2>&1 || :
|
2011-09-09 18:52:24 +00:00
|
|
|
fi
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%preun
|
2012-02-06 23:32:16 +00:00
|
|
|
if [ $1 -eq 0 ]; then # Package removal, not upgrade
|
|
|
|
/bin/systemctl --no-reload disable firewalld.service > /dev/null 2>&1 || :
|
|
|
|
/bin/systemctl stop firewalld.service > /dev/null 2>&1 || :
|
2011-01-07 15:38:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
2011-09-09 18:52:24 +00:00
|
|
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
2012-02-06 23:32:16 +00:00
|
|
|
if [ $1 -ge 1 ] ; then # Package upgrade, not uninstall
|
|
|
|
/bin/systemctl try-restart firewalld.service >/dev/null 2>&1 || :
|
2011-09-09 18:52:24 +00:00
|
|
|
fi
|
2011-01-07 15:38:25 +00:00
|
|
|
|
2012-02-06 23:32:16 +00:00
|
|
|
%triggerun -- firewalld < 0.1.3-3
|
2011-09-09 18:52:24 +00:00
|
|
|
# Save the current service runlevel info
|
|
|
|
# User must manually run systemd-sysv-convert --apply firewalld
|
|
|
|
# to migrate them to systemd targets
|
|
|
|
/usr/bin/systemd-sysv-convert --save firewalld >/dev/null 2>&1 ||:
|
|
|
|
|
|
|
|
# Run these because the SysV package being removed won't do them
|
|
|
|
/sbin/chkconfig --del firewalld >/dev/null 2>&1 || :
|
|
|
|
/bin/systemctl try-restart firewalld.service >/dev/null 2>&1 || :
|
|
|
|
|
2012-03-06 12:56:05 +00:00
|
|
|
%post -n firewall-applet
|
|
|
|
touch --no-create %{_datadir}/icons/hicolor
|
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
|
|
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun -n firewall-applet
|
|
|
|
touch --no-create %{_datadir}/icons/hicolor
|
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
|
|
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
|
|
|
fi
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%posttrans -n firewall-applet
|
2012-02-07 11:05:54 +00:00
|
|
|
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
|
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%files -f %{name}.lang
|
2012-02-06 23:32:16 +00:00
|
|
|
%defattr(-,root,root)
|
2011-01-07 15:38:25 +00:00
|
|
|
%doc COPYING
|
|
|
|
%{_sbindir}/firewalld
|
|
|
|
%{_bindir}/firewall-cmd
|
2012-08-07 11:25:11 +00:00
|
|
|
%{_bindir}/firewall-convert-scfw-config
|
2012-02-06 23:32:16 +00:00
|
|
|
%defattr(0640,root,root)
|
2012-03-06 12:56:05 +00:00
|
|
|
%attr(0750,root,root) %dir %{_prefix}/lib/firewalld
|
|
|
|
%attr(0750,root,root) %dir %{_prefix}/lib/firewalld/icmptypes
|
|
|
|
%attr(0750,root,root) %dir %{_prefix}/lib/firewalld/services
|
|
|
|
%attr(0750,root,root) %dir %{_prefix}/lib/firewalld/zones
|
|
|
|
%{_prefix}/lib/firewalld/icmptypes/*.xml
|
|
|
|
%{_prefix}/lib/firewalld/services/*.xml
|
|
|
|
%{_prefix}/lib/firewalld/zones/*.xml
|
2012-02-06 23:32:16 +00:00
|
|
|
%attr(0750,root,root) %dir %{_sysconfdir}/firewalld
|
2012-03-06 12:56:05 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/firewalld/firewalld.conf
|
2012-02-06 23:32:16 +00:00
|
|
|
%attr(0750,root,root) %dir %{_sysconfdir}/firewalld/icmptypes
|
|
|
|
%attr(0750,root,root) %dir %{_sysconfdir}/firewalld/services
|
|
|
|
%attr(0750,root,root) %dir %{_sysconfdir}/firewalld/zones
|
|
|
|
%defattr(0644,root,root)
|
2011-01-07 15:38:25 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/firewalld
|
2012-02-06 23:32:16 +00:00
|
|
|
#%attr(0755,root,root) %{_initrddir}/firewalld
|
2011-09-09 18:52:24 +00:00
|
|
|
%{_unitdir}/firewalld.service
|
2011-01-07 15:38:25 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/FirewallD.conf
|
- firewall-cmd: several changes and fixes
- code cleanup
- fixed icmp protocol used for ipv6 (rhbz#801182)
- added and fixed some comments
- properly restore zone settings, timeout is always set, check for 0
- some FirewallError exceptions were actually not raised
- do not REJECT in each zone
- removeInterface() don't require zone
- new tests in firewall-test script
- dbus_to_python() was ignoring certain values
- added functions for the direct interface: chains, rules, passthrough
- fixed inconsistent data after reload
- some fixes for the direct interface: priority positions are bound to ipv,
table and chain
- added support for direct interface in firewall-cmd:
- added isImmutable(zone) to zone D-Bus interface
- renamed policy file
- enhancements for error messages, enables output for direct.passthrough
- added allow_any to firewald policies, using at leas auth_admin for policies
- replaced ENABLE_FAILED, DISABLE_FAILED, ADD_FAILED and REMOVE_FAILED by
COMMAND_FAILED, resorted error codes
- new firewalld configuration setting CleanupOnExit
- enabled polkit again, found a fix for property problem with slip.dbus.service
- added dhcpv6-client to 'public' (the default) and to 'internal' zones.
- fixed missing settings form zone config files in
"firewall-cmd --list=all --zone=<zone>" call
- added list functions for services and icmptypes, added --list=services and
--list=icmptypes to firewall-cmd
2012-03-15 21:36:11 +00:00
|
|
|
%{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy
|
2012-02-06 23:32:16 +00:00
|
|
|
%attr(0755,root,root) %dir %{python_sitelib}/firewall
|
|
|
|
%attr(0755,root,root) %dir %{python_sitelib}/firewall/config
|
|
|
|
%attr(0755,root,root) %dir %{python_sitelib}/firewall/core
|
|
|
|
%attr(0755,root,root) %dir %{python_sitelib}/firewall/core/io
|
|
|
|
%attr(0755,root,root) %dir %{python_sitelib}/firewall/server
|
|
|
|
%{python_sitelib}/firewall/*.py*
|
|
|
|
%{python_sitelib}/firewall/config/*.py*
|
|
|
|
%{python_sitelib}/firewall/core/*.py*
|
|
|
|
%{python_sitelib}/firewall/core/io/*.py*
|
|
|
|
%{python_sitelib}/firewall/server/*.py*
|
2012-04-20 19:26:55 +00:00
|
|
|
%{_mandir}/man1/firewall*.1*
|
|
|
|
%{_mandir}/man5/firewall*.5*
|
2011-01-07 15:38:25 +00:00
|
|
|
|
|
|
|
%files -n firewall-applet
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/firewall-applet
|
|
|
|
%defattr(0644,root,root)
|
|
|
|
%{_datadir}/applications/firewall-applet.desktop
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/firewall-applet*.*
|
2012-02-06 23:32:16 +00:00
|
|
|
%{_datadir}/glib-2.0/schemas/org.fedoraproject.FirewallApplet.gschema.xml
|
2011-01-07 15:38:25 +00:00
|
|
|
|
2012-08-07 11:25:11 +00:00
|
|
|
%files -n firewall-config
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/firewall-config
|
|
|
|
%defattr(0644,root,root)
|
2011-01-07 15:38:25 +00:00
|
|
|
#%{_datadir}/firewalld/firewall-config.glade
|
2012-08-07 11:25:11 +00:00
|
|
|
%{_datadir}/applications/firewall-config.desktop
|
2011-01-07 15:38:25 +00:00
|
|
|
#%{_datadir}/icons/hicolor/*/apps/firewall-config*.*
|
|
|
|
|
|
|
|
%changelog
|
2012-08-07 11:25:11 +00:00
|
|
|
* Tue Aug 7 2012 Thomas Woerner <twoerner@redhat.com> 0.2.6-1
|
|
|
|
- New D-BUS interface for persistent configuration
|
|
|
|
- Aded support for persistent zone configuration in firewall-cmd
|
|
|
|
- New Shields Up feature in firewall-applet
|
|
|
|
- New requirements for python-decorator and pygobject3
|
|
|
|
- New firewall-config sub-package
|
|
|
|
- New firewall-convert-scfw-config config script
|
|
|
|
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
|
2012-07-19 02:26:40 +00:00
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-20 19:16:48 +00:00
|
|
|
* Fri Apr 20 2012 Thomas Woerner <twoerner@redhat.com> 0.2.5-1
|
|
|
|
- Fixed traceback in firewall-cmd for failed or canceled authorization,
|
|
|
|
return proper error codes, new error codes NOT_RUNNING and NOT_AUTHORIZED
|
|
|
|
- Enhanced firewalld service file (RHBZ#806868) and (RHBZ#811240)
|
|
|
|
- Fixed duplicates in zone after reload, enabled timed settings after reload
|
|
|
|
- Removed conntrack --ctstate INVALID check from default ruleset, because it
|
|
|
|
results in ICMP problems (RHBZ#806017).
|
|
|
|
- Update interfaces in default zone after reload (rhbz#804814)
|
|
|
|
- New man pages for firewalld(1), firewalld.conf(5), firewalld.icmptype(5),
|
|
|
|
firewalld.service(5) and firewalld.zone(5), updated firewall-cmd man page
|
|
|
|
(RHBZ#811257)
|
|
|
|
- Fixed firewall-cmd help output
|
|
|
|
- Fixed missing icon for firewall-applet (RHBZ#808759)
|
|
|
|
- Added root user check for firewalld (RHBZ#767654)
|
|
|
|
- Fixed requirements of firewall-applet sub package (RHBZ#808746)
|
|
|
|
- Update interfaces in default zone after changing of default zone (RHBZ#804814)
|
|
|
|
- Start firewalld before NetworkManager (RHBZ#811240)
|
|
|
|
- Add Type=dbus and BusName to service file (RHBZ#811240)
|
|
|
|
|
2012-03-16 15:36:03 +00:00
|
|
|
* Fri Mar 16 2012 Thomas Woerner <twoerner@redhat.com> 0.2.4-1
|
|
|
|
- fixed firewalld.conf save exception if no temporary file can be written to
|
|
|
|
/etc/firewalld/
|
|
|
|
|
- firewall-cmd: several changes and fixes
- code cleanup
- fixed icmp protocol used for ipv6 (rhbz#801182)
- added and fixed some comments
- properly restore zone settings, timeout is always set, check for 0
- some FirewallError exceptions were actually not raised
- do not REJECT in each zone
- removeInterface() don't require zone
- new tests in firewall-test script
- dbus_to_python() was ignoring certain values
- added functions for the direct interface: chains, rules, passthrough
- fixed inconsistent data after reload
- some fixes for the direct interface: priority positions are bound to ipv,
table and chain
- added support for direct interface in firewall-cmd:
- added isImmutable(zone) to zone D-Bus interface
- renamed policy file
- enhancements for error messages, enables output for direct.passthrough
- added allow_any to firewald policies, using at leas auth_admin for policies
- replaced ENABLE_FAILED, DISABLE_FAILED, ADD_FAILED and REMOVE_FAILED by
COMMAND_FAILED, resorted error codes
- new firewalld configuration setting CleanupOnExit
- enabled polkit again, found a fix for property problem with slip.dbus.service
- added dhcpv6-client to 'public' (the default) and to 'internal' zones.
- fixed missing settings form zone config files in
"firewall-cmd --list=all --zone=<zone>" call
- added list functions for services and icmptypes, added --list=services and
--list=icmptypes to firewall-cmd
2012-03-15 21:36:11 +00:00
|
|
|
* Thu Mar 15 2012 Thomas Woerner <twoerner@redhat.com> 0.2.3-1
|
|
|
|
- firewall-cmd: several changes and fixes
|
|
|
|
- code cleanup
|
|
|
|
- fixed icmp protocol used for ipv6 (rhbz#801182)
|
|
|
|
- added and fixed some comments
|
|
|
|
- properly restore zone settings, timeout is always set, check for 0
|
|
|
|
- some FirewallError exceptions were actually not raised
|
|
|
|
- do not REJECT in each zone
|
|
|
|
- removeInterface() don't require zone
|
|
|
|
- new tests in firewall-test script
|
|
|
|
- dbus_to_python() was ignoring certain values
|
|
|
|
- added functions for the direct interface: chains, rules, passthrough
|
|
|
|
- fixed inconsistent data after reload
|
|
|
|
- some fixes for the direct interface: priority positions are bound to ipv,
|
|
|
|
table and chain
|
|
|
|
- added support for direct interface in firewall-cmd:
|
|
|
|
- added isImmutable(zone) to zone D-Bus interface
|
|
|
|
- renamed policy file
|
|
|
|
- enhancements for error messages, enables output for direct.passthrough
|
|
|
|
- added allow_any to firewald policies, using at leas auth_admin for policies
|
|
|
|
- replaced ENABLE_FAILED, DISABLE_FAILED, ADD_FAILED and REMOVE_FAILED by
|
|
|
|
COMMAND_FAILED, resorted error codes
|
|
|
|
- new firewalld configuration setting CleanupOnExit
|
|
|
|
- enabled polkit again, found a fix for property problem with slip.dbus.service
|
|
|
|
- added dhcpv6-client to 'public' (the default) and to 'internal' zones.
|
|
|
|
- fixed missing settings form zone config files in
|
|
|
|
"firewall-cmd --list=all --zone=<zone>" call
|
|
|
|
- added list functions for services and icmptypes, added --list=services and
|
|
|
|
--list=icmptypes to firewall-cmd
|
|
|
|
|
2012-03-06 12:56:05 +00:00
|
|
|
* Tue Mar 6 2012 Thomas Woerner <twoerner@redhat.com> 0.2.2-1
|
|
|
|
- enabled dhcpv6-client service for zones home and work
|
|
|
|
- new dhcpv6-client service
|
|
|
|
- firewall-cmd: query mode returns reversed values
|
|
|
|
- new zone.changeZone(zone, interface)
|
|
|
|
- moved zones, services and icmptypes to /usr/lib/firewalld, can be overloaded
|
|
|
|
by files in /etc/firewalld (no overload of immutable zones block, drop,
|
|
|
|
trusted)
|
|
|
|
- reset MinimalMark in firewalld.cnf to default value
|
|
|
|
- fixed service destination (addresses not used)
|
|
|
|
- fix xmlplus to be compatible with the python xml sax parser and python 3
|
|
|
|
by adding __contains__ to xml.sax.xmlreader.AttributesImpl
|
|
|
|
- use icon and glib related post, postun and posttrans scriptes for firewall
|
|
|
|
- firewall-cmd: fix typo in state
|
|
|
|
- firewall-cmd: fix usage()
|
|
|
|
- firewall-cmd: fix interface action description in usage()
|
|
|
|
- client.py: fix definition of queryInterface()
|
|
|
|
- client.py: fix typo in getInterfaces()
|
|
|
|
- firewalld.service: do not fork
|
|
|
|
- firewall-cmd: fix bug in --list=port and --port action help message
|
|
|
|
- firewall-cmd: fix bug in --list=service
|
|
|
|
|
|
|
|
* Mon Mar 5 2012 Thomas Woerner <twoerner@redhat.com>
|
|
|
|
- moved zones, services and icmptypes to /usr/lib/firewalld, can be overloaded
|
|
|
|
by files in /etc/firewalld (no overload of immutable zones block, drop,
|
|
|
|
trusted)
|
|
|
|
|
2012-02-21 12:37:40 +00:00
|
|
|
* Tue Feb 21 2012 Thomas Woerner <twoerner@redhat.com> 0.2.1-1
|
|
|
|
- added missing firewall.dbus_utils
|
|
|
|
|
2012-02-07 11:05:54 +00:00
|
|
|
* Tue Feb 7 2012 Thomas Woerner <twoerner@redhat.com> 0.2.0-2
|
|
|
|
- added glib2-devel to build requires, needed for gsettings.m4
|
|
|
|
- added --with-system-unitdir arg to fix installaiton of system file
|
|
|
|
- added glib-compile-schemas calls for postun and posttrans
|
|
|
|
- added EXTRA_DIST file lists
|
|
|
|
|
2012-02-06 23:32:16 +00:00
|
|
|
* Mon Feb 6 2012 Thomas Woerner <twoerner@redhat.com> 0.2.0-1
|
|
|
|
- version 0.2.0 with new FirewallD1 D-BUS interface
|
|
|
|
- supports zones with a default zone
|
|
|
|
- new direct interface as a replacement of the partial virt interface with
|
|
|
|
additional passthrough functionality
|
|
|
|
- dropped custom rules, use direct interface instead
|
|
|
|
- dropped trusted interface funcionality, use trusted zone instead
|
|
|
|
- using zone, service and icmptype configuration files
|
|
|
|
- not using any system-config-firewall parts anymore
|
|
|
|
|
- new version 0.1.3
- restore all firewall features for reload: panic and virt rules and chains
- string fixes for firewall-cmd man page (by Jiri Popelka)
- fixed firewall-cmd port list (by Jiri Popelka)
- added firewall dbus client connect check to firewall-cmd (by Jiri Popelka)
- translation updates: de, es, gu, it, ja, kn, ml, nl, or, pa, pl, ru, ta,
uk, zh_CN
2011-02-15 17:54:04 +00:00
|
|
|
* Mon Feb 14 2011 Thomas Woerner <twoerner@redhat.com> 0.1.3-1
|
|
|
|
- new version 0.1.3
|
|
|
|
- restore all firewall features for reload: panic and virt rules and chains
|
|
|
|
- string fixes for firewall-cmd man page (by Jiri Popelka)
|
|
|
|
- fixed firewall-cmd port list (by Jiri Popelka)
|
|
|
|
- added firewall dbus client connect check to firewall-cmd (by Jiri Popelka)
|
|
|
|
- translation updates: de, es, gu, it, ja, kn, ml, nl, or, pa, pl, ru, ta,
|
|
|
|
uk, zh_CN
|
|
|
|
|
2011-01-07 15:38:25 +00:00
|
|
|
* Mon Jan 3 2011 Thomas Woerner <twoerner@redhat.com> 0.1.2-1
|
|
|
|
- fixed package according to package review (rhbz#665395):
|
|
|
|
- non executable scripts: dropped shebang
|
|
|
|
- using newer GPL license file
|
|
|
|
- made /etc/dbus-1/system.d/FirewallD.conf config(noreplace)
|
|
|
|
- added requires(post) and (pre) for chkconfig
|
|
|
|
|
|
|
|
* Mon Jan 3 2011 Thomas Woerner <twoerner@redhat.com> 0.1.1-1
|
|
|
|
- new version 0.1.1
|
|
|
|
- fixed source path in POTFILES*
|
|
|
|
- added missing firewall_config.py.in
|
|
|
|
- added misssing space for spec_ver line
|
|
|
|
- using firewall_config.VARLOGFILE
|
|
|
|
- added date to logging output
|
|
|
|
- also log fatal and error logs to stderr and firewall_config.VARLOGFILE
|
|
|
|
- make log message for active_firewalld fatal
|
|
|
|
|
|
|
|
* Mon Dec 20 2010 Thomas Woerner <twoerner@redhat.com> 0.1-1
|
|
|
|
- initial package (proof of concept implementation)
|