<feed xmlns='http://www.w3.org/2005/Atom'>
<title>initscripts/sysconfig/network-scripts/ifup-post, branch 9.49.52</title>
<subtitle>Mageia fork of Fedora's Init Scripts</subtitle>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/'/>
<entry>
<title>ifup-post: fix incorrect condition for RESOLV_MODS</title>
<updated>2018-08-24T10:23:27+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-08-20T12:31:56+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=d7e9663a063e087cd9c77844f56d1c17e7a19402'/>
<id>d7e9663a063e087cd9c77844f56d1c17e7a19402</id>
<content type='text'>
  This was causing the /etc/resolv.conf file to be always updated when
  RESOLV_MODS was not set...

  Before the commit 5d6156454bf8f6dab4a5fdd7e1bf6 we were not updating
  the /etc/resolv.conf file if the RESOLV_MODS was empty.

  See https://bugzilla.redhat.com/show_bug.cgi?id=1610411 for more info.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  This was causing the /etc/resolv.conf file to be always updated when
  RESOLV_MODS was not set...

  Before the commit 5d6156454bf8f6dab4a5fdd7e1bf6 we were not updating
  the /etc/resolv.conf file if the RESOLV_MODS was empty.

  See https://bugzilla.redhat.com/show_bug.cgi?id=1610411 for more info.
</pre>
</div>
</content>
</entry>
<entry>
<title>network-scripts: setting of firewall ZONE fixed</title>
<updated>2018-06-07T12:26:23+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-06-06T17:19:11+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=d951e7c7d64c0378424b8b2edd406ae9eaa73ec1'/>
<id>d951e7c7d64c0378424b8b2edd406ae9eaa73ec1</id>
<content type='text'>
  For currently unknown reason the dbus-send calls will fail to set the
  firewall zone for the given interface if we omit the --print-reply
  option...

  This looks like some kind of race-condition in dbus-send, since the
  --print-reply makes the call synchronous and slower.

  Hopefully this is only a temporary workaround until DBus is fixed.

  Resolves: #1586284
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  For currently unknown reason the dbus-send calls will fail to set the
  firewall zone for the given interface if we omit the --print-reply
  option...

  This looks like some kind of race-condition in dbus-send, since the
  --print-reply makes the call synchronous and slower.

  Hopefully this is only a temporary workaround until DBus is fixed.

  Resolves: #1586284
</pre>
</div>
</content>
</entry>
<entry>
<title>network-functions: use POSIX forwarding instead of bash-ism</title>
<updated>2017-11-09T13:58:51+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-11-08T16:25:24+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=cfa035c7c3aeacea60d4e12bebde7ce8e1ecc54b'/>
<id>cfa035c7c3aeacea60d4e12bebde7ce8e1ecc54b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ifup-post: always update nameserver &amp; search entries in /etc/resolv.conf</title>
<updated>2017-11-02T10:54:44+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-10-30T16:08:42+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=4da9dbaffba4af74eb632d1a5d10e5c366475516'/>
<id>4da9dbaffba4af74eb632d1a5d10e5c366475516</id>
<content type='text'>
  This is complete rework of how we generate the /etc/resolv.conf.

  Fixes:
   * always update 'nameserver' &amp; 'search' entries when DNS* &amp; DOMAIN
     options (respectively) were updated in ifcfg-* files
   * always update the order of 'nameserver' entries when the order of
     DNS* options was updated

  Enhancements:
   * added support for DNS3 option (equals to MAXNS value in GLIBC)
   * added logic to process duplicate DNS* options
   * added logic to process randomly omitted DNS* options (e.g. omitting
     DNS1 while specifying DNS2 and/or DNS3 will still work now)

  This work was based on these two RHEL-7.5 BZs:
  https://bugzilla.redhat.com/show_bug.cgi?id=1364895
  https://bugzilla.redhat.com/show_bug.cgi?id=1357658
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  This is complete rework of how we generate the /etc/resolv.conf.

  Fixes:
   * always update 'nameserver' &amp; 'search' entries when DNS* &amp; DOMAIN
     options (respectively) were updated in ifcfg-* files
   * always update the order of 'nameserver' entries when the order of
     DNS* options was updated

  Enhancements:
   * added support for DNS3 option (equals to MAXNS value in GLIBC)
   * added logic to process duplicate DNS* options
   * added logic to process randomly omitted DNS* options (e.g. omitting
     DNS1 while specifying DNS2 and/or DNS3 will still work now)

  This work was based on these two RHEL-7.5 BZs:
  https://bugzilla.redhat.com/show_bug.cgi?id=1364895
  https://bugzilla.redhat.com/show_bug.cgi?id=1357658
</pre>
</div>
</content>
</entry>
<entry>
<title>network-scripts: forward DBus calls to /dev/null</title>
<updated>2017-10-31T11:27:31+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-10-31T11:14:30+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=40eb870afeb4c984e1b9035100e65acb03812ac0'/>
<id>40eb870afeb4c984e1b9035100e65acb03812ac0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>network-scripts: firewall-cmd replaced with DBus calls</title>
<updated>2017-10-31T11:27:31+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-10-10T15:49:37+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=e30b3c095221ebec965e9c78a78f694b6a7a3aa4'/>
<id>e30b3c095221ebec965e9c78a78f694b6a7a3aa4</id>
<content type='text'>
  To speed things up. Based on patch &amp; comments from:
  https://bugzilla.redhat.com/show_bug.cgi?id=1497759
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  To speed things up. Based on patch &amp; comments from:
  https://bugzilla.redhat.com/show_bug.cgi?id=1497759
</pre>
</div>
</content>
</entry>
<entry>
<title>9.70-sync: sysconfig/network-scripts/* updated - part 2</title>
<updated>2017-03-22T13:42:25+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-03-21T16:21:53+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=c5917b856db1e32a863fa78b54d5a7533c99577a'/>
<id>c5917b856db1e32a863fa78b54d5a7533c99577a</id>
<content type='text'>
  This commit contains a lot of whitespace changes.
  Use 'git diff --ignore-all-space' to display the relevant changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  This commit contains a lot of whitespace changes.
  Use 'git diff --ignore-all-space' to display the relevant changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>ifup-post: check resolve.conf also with DNS2</title>
<updated>2016-05-26T15:13:57+00:00</updated>
<author>
<name>Lukas Nykryn</name>
<email>lnykryn@redhat.com</email>
</author>
<published>2015-01-16T13:44:30+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=21ee08c718692c6a4ff32204767638f0c3aafa65'/>
<id>21ee08c718692c6a4ff32204767638f0c3aafa65</id>
<content type='text'>
Cherry-picked from: da08727f3bbcc419096b160968aee83104bb7cf6
Resolves: #1316019
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cherry-picked from: da08727f3bbcc419096b160968aee83104bb7cf6
Resolves: #1316019
</pre>
</div>
</content>
</entry>
<entry>
<title>Readd missing shebang. (#885821)</title>
<updated>2012-12-10T17:48:19+00:00</updated>
<author>
<name>Bill Nottingham</name>
<email>notting@redhat.com</email>
</author>
<published>2012-12-10T17:48:19+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=a3d8303fff48dc133e1b4bb148e89ccc9db142b8'/>
<id>a3d8303fff48dc133e1b4bb148e89ccc9db142b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix calling of firewall-cmd in ifup-post/ifdown-post.</title>
<updated>2012-10-08T19:47:57+00:00</updated>
<author>
<name>Jiri Popelka</name>
<email>jpopelka@redhat.com</email>
</author>
<published>2012-10-05T14:57:32+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=1d7446ccf9d2671857c5f554b2a0be484e95e640'/>
<id>1d7446ccf9d2671857c5f554b2a0be484e95e640</id>
<content type='text'>
firewall-cmd has been using combined longopts since 0.2.6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
firewall-cmd has been using combined longopts since 0.2.6
</pre>
</div>
</content>
</entry>
</feed>
