<feed xmlns='http://www.w3.org/2005/Atom'>
<title>initscripts/sysconfig/network-scripts/ifdown-eth, branch 9.49.48</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>ifdown-eth: no longer needed 'pidof -x dhclient' condition removed</title>
<updated>2018-07-24T13:52:11+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-05-14T11:40:08+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=8f42fe8dfb7dd6c3c4c2e551237e0d8ea023620b'/>
<id>8f42fe8dfb7dd6c3c4c2e551237e0d8ea023620b</id>
<content type='text'>
  Previously, there were 2 additional conditions related to this part of
  code, but they were removed in time, so this last condition has
  remained an artifact and is de-facto obsolete.

  However, the 'pidof -x dhclient' condition could cause the network
  service to hang on stop/restart when processes were executed from a
  network share... Removing that condition should hypothetically fix it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Previously, there were 2 additional conditions related to this part of
  code, but they were removed in time, so this last condition has
  remained an artifact and is de-facto obsolete.

  However, the 'pidof -x dhclient' condition could cause the network
  service to hang on stop/restart when processes were executed from a
  network share... Removing that condition should hypothetically fix it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace usleep(1) calls with sleep(1) calls</title>
<updated>2017-10-31T11:36:19+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2017-05-25T11:25:55+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=3e524c51a3438cbfc92a5ad19614b3bf8fbd4000'/>
<id>3e524c51a3438cbfc92a5ad19614b3bf8fbd4000</id>
<content type='text'>
  The time units had to be manually converted from microseconds to
  seconds. Hopefully this was done right.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  The time units had to be manually converted from microseconds to
  seconds. Hopefully this was done right.
</pre>
</div>
</content>
</entry>
<entry>
<title>ifdown-eth: we need to flush global scope as well</title>
<updated>2017-03-30T08:39:36+00:00</updated>
<author>
<name>Lukas Nykryn</name>
<email>lnykryn@redhat.com</email>
</author>
<published>2016-06-30T05:42:41+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=847bcf3f53fc81f1adb5b23137f97c41b75bbc0e'/>
<id>847bcf3f53fc81f1adb5b23137f97c41b75bbc0e</id>
<content type='text'>
  ... but it is stuck some time
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  ... but it is stuck some time
</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>network: add support for team devices</title>
<updated>2014-07-24T11:32:14+00:00</updated>
<author>
<name>Jiri Pirko</name>
<email>jiri@resnulli.us</email>
</author>
<published>2014-03-31T08:35:49+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=812e5b0afff866ae8d9c2799677ec5c1da7a65c1'/>
<id>812e5b0afff866ae8d9c2799677ec5c1da7a65c1</id>
<content type='text'>
Currently, team masters and slaves are supported via ifup-Team* and
ifdown-Team* scripts shipped in teamd package. It uses somehow ugly
workaround where user have to specify DEVIVETYPE to "Team" or
"TeamPort". This turned out to be non-optimal solution as this is
confusing users. Also it does not work when TYPE is set.

So fix this by adding the team support hooks directly into initscripts.

Now for team port, user needs only to set:
TEAM_MASTER="teamx"

and for team master, user needs only to set:
TEAM_CONFIG="...whatever..."

Signed-off-by: Jiri Pirko &lt;jiri@resnulli.us&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, team masters and slaves are supported via ifup-Team* and
ifdown-Team* scripts shipped in teamd package. It uses somehow ugly
workaround where user have to specify DEVIVETYPE to "Team" or
"TeamPort". This turned out to be non-optimal solution as this is
confusing users. Also it does not work when TYPE is set.

So fix this by adding the team support hooks directly into initscripts.

Now for team port, user needs only to set:
TEAM_MASTER="teamx"

and for team master, user needs only to set:
TEAM_CONFIG="...whatever..."

Signed-off-by: Jiri Pirko &lt;jiri@resnulli.us&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>replace tunctl with ip tuntap (#947875)</title>
<updated>2013-04-09T10:33:28+00:00</updated>
<author>
<name>Lukas Nykryn</name>
<email>lnykryn@redhat.com</email>
</author>
<published>2013-04-09T10:33:28+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=c82961615e76578f289516262846f41bc7641db0'/>
<id>c82961615e76578f289516262846f41bc7641db0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>call flush addresses with scope global</title>
<updated>2013-04-03T11:17:43+00:00</updated>
<author>
<name>Lukas Nykryn</name>
<email>lnykryn@redhat.com</email>
</author>
<published>2013-04-03T11:17:43+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=a89df09d512e5331ad16f4f5c1bdc01acdaca4c4'/>
<id>a89df09d512e5331ad16f4f5c1bdc01acdaca4c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix greps to correctly handle comments and quotation</title>
<updated>2013-02-26T15:57:05+00:00</updated>
<author>
<name>Lukas Nykryn</name>
<email>lnykryn@redhat.com</email>
</author>
<published>2013-02-26T15:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=08ae592f83dfa9c6e83d42f0d6e20543c253a685'/>
<id>08ae592f83dfa9c6e83d42f0d6e20543c253a685</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Sync FSF address with GPL 2 text.</title>
<updated>2013-01-20T20:14:19+00:00</updated>
<author>
<name>Ville Skyttä</name>
<email>ville.skytta@iki.fi</email>
</author>
<published>2013-01-19T16:15:43+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=9fcf01add06e4dbf4064cfd2e97c8236c2f5a194'/>
<id>9fcf01add06e4dbf4064cfd2e97c8236c2f5a194</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Be less strict about VLAN name (#505314)</title>
<updated>2012-09-05T11:32:12+00:00</updated>
<author>
<name>Václav Pavlín</name>
<email>vpavlin@redhat.com</email>
</author>
<published>2012-09-05T11:32:12+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=02ca71f53ca1fe26a416b20a8a6b392565f74b57'/>
<id>02ca71f53ca1fe26a416b20a8a6b392565f74b57</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
