<feed xmlns='http://www.w3.org/2005/Atom'>
<title>initscripts, branch 9.49.42</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>9.49.42</title>
<updated>2018-05-25T10:28:00+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-05-25T10:19:58+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=ff5e217da38a24a780c793ee9cad03272705ee84'/>
<id>ff5e217da38a24a780c793ee9cad03272705ee84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rhel-autorelabel: set UEFI boot order (BootNext) same as BootCurrent</title>
<updated>2018-05-25T10:14:28+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-05-14T12:52:55+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=ed219f6483192cb7101e5c17f1c5db7be714b187'/>
<id>ed219f6483192cb7101e5c17f1c5db7be714b187</id>
<content type='text'>
  This can be useful when user has this UEFI boot order e.g.:

                 Windows | grub | Linux

  And decides to boot into grub/Linux. In case the autorelabel service
  is being run after the boot into grub, then the reboot after the
  autorelabel is done will cause user to boot into Windows again...

  This change should make the behaviour more intuitive for the user.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  This can be useful when user has this UEFI boot order e.g.:

                 Windows | grub | Linux

  And decides to boot into grub/Linux. In case the autorelabel service
  is being run after the boot into grub, then the reboot after the
  autorelabel is done will cause user to boot into Windows again...

  This change should make the behaviour more intuitive for the user.
</pre>
</div>
</content>
</entry>
<entry>
<title>network-functions: use tr to upper case strings rather than awk</title>
<updated>2018-05-17T15:47:07+00:00</updated>
<author>
<name>Matteo Croce</name>
<email>mcroce@redhat.com</email>
</author>
<published>2018-04-09T22:48:11+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=c29fbec03a13d7cfaac46af72aafc44f78902cc4'/>
<id>c29fbec03a13d7cfaac46af72aafc44f78902cc4</id>
<content type='text'>
network-functions uses awk to tranform the mac address to upper case.
Replace awk with tr which is two order of magnitude faster:

    $ time awk '{ print toupper($0) }' &lt;/usr/share/dict/words &gt;/dev/null

    real    0m0,227s
    user    0m0,224s
    sys     0m0,004s
    $ time tr '[a-z]' '[A-Z]' &lt;/usr/share/dict/words &gt;/dev/null

    real    0m0,005s
    user    0m0,000s
    sys     0m0,005s

Also use here-strings instead of spawning a subshell and a pipe.

Signed-off-by: Matteo Croce &lt;mcroce@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
network-functions uses awk to tranform the mac address to upper case.
Replace awk with tr which is two order of magnitude faster:

    $ time awk '{ print toupper($0) }' &lt;/usr/share/dict/words &gt;/dev/null

    real    0m0,227s
    user    0m0,224s
    sys     0m0,004s
    $ time tr '[a-z]' '[A-Z]' &lt;/usr/share/dict/words &gt;/dev/null

    real    0m0,005s
    user    0m0,000s
    sys     0m0,005s

Also use here-strings instead of spawning a subshell and a pipe.

Signed-off-by: Matteo Croce &lt;mcroce@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>sysconfig/readonly-root: Clarify the usage of readonly-root.</title>
<updated>2018-05-17T13:18:03+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-05-10T15:18:54+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=402e41490782fc0549326be1a5d98bfa1f4ce35b'/>
<id>402e41490782fc0549326be1a5d98bfa1f4ce35b</id>
<content type='text'>
  ... Without appending the 'ro' to mount options of '/' mount point the
  system will be still mounted as read-write, even when READONLY=yes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  ... Without appending the 'ro' to mount options of '/' mount point the
  system will be still mounted as read-write, even when READONLY=yes.
</pre>
</div>
</content>
</entry>
<entry>
<title>network-functions: add error messages for bonding installation</title>
<updated>2018-05-17T12:49:45+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-05-02T13:53:04+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=e811abf000f525932f6334ce0c06adb3d2860a6d'/>
<id>e811abf000f525932f6334ce0c06adb3d2860a6d</id>
<content type='text'>
  Instead of displaying messages without context, like this:

  ./network-functions: line 571: echo: write error: Invalid argument
  ./network-functions: line 598: echo: write error: Permission denied

  We will now display pretty error messages (via net_log) about what has
  actually failed...

  This has been requested by our customer:
  https://bugzilla.redhat.com/show_bug.cgi?id=1542514
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Instead of displaying messages without context, like this:

  ./network-functions: line 571: echo: write error: Invalid argument
  ./network-functions: line 598: echo: write error: Permission denied

  We will now display pretty error messages (via net_log) about what has
  actually failed...

  This has been requested by our customer:
  https://bugzilla.redhat.com/show_bug.cgi?id=1542514
</pre>
</div>
</content>
</entry>
<entry>
<title>sysctl.conf.s390: drop SHMALL and SHMMAX</title>
<updated>2018-05-17T12:48:39+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-04-27T13:20:56+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=eaaea56f8625538e66d8786cc23d808d0581080a'/>
<id>eaaea56f8625538e66d8786cc23d808d0581080a</id>
<content type='text'>
  They have sane default values in kernel for IBM machines as well:
  https://bugzilla.redhat.com/show_bug.cgi?id=1493069
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  They have sane default values in kernel for IBM machines as well:
  https://bugzilla.redhat.com/show_bug.cgi?id=1493069
</pre>
</div>
</content>
</entry>
<entry>
<title>network.service: 'reload' removed</title>
<updated>2018-05-17T12:48:08+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-03-13T12:06:41+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=25fa49d9d8847ce4dd5c366e4cb41a02155d5653'/>
<id>25fa49d9d8847ce4dd5c366e4cb41a02155d5653</id>
<content type='text'>
  More info: https://bugzilla.redhat.com/show_bug.cgi?id=1554690
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  More info: https://bugzilla.redhat.com/show_bug.cgi?id=1554690
</pre>
</div>
</content>
</entry>
<entry>
<title>rhel-readonly.service: target name for random seed fixed</title>
<updated>2018-03-09T13:13:22+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-03-08T16:49:55+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=7cd3dc66600cdaf094bea7524243aa9235478d6d'/>
<id>7cd3dc66600cdaf094bea7524243aa9235478d6d</id>
<content type='text'>
  Resolves: #1553093
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Resolves: #1553093
</pre>
</div>
</content>
</entry>
<entry>
<title>init.d/functions: fix sourcing for ksh</title>
<updated>2018-02-13T13:26:25+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-02-13T13:03:30+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=b1c8bff38d916ade25ed8f880899ed691354b990'/>
<id>b1c8bff38d916ade25ed8f880899ed691354b990</id>
<content type='text'>
  More info: https://bugzilla.redhat.com/show_bug.cgi?id=1518429
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  More info: https://bugzilla.redhat.com/show_bug.cgi?id=1518429
</pre>
</div>
</content>
</entry>
<entry>
<title>9.49.41</title>
<updated>2018-01-02T16:29:40+00:00</updated>
<author>
<name>David Kaspar [Dee'Kej]</name>
<email>dkaspar@redhat.com</email>
</author>
<published>2018-01-02T16:28:02+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/software/forks/initscripts/commit/?id=e187c18568b30287d5af31dc59b6b8ce7cfecce1'/>
<id>e187c18568b30287d5af31dc59b6b8ce7cfecce1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
