<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=3969&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / I solve issue with jitterentropy-rngd package]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=3969</link>
		<description><![CDATA[The most recent posts in I solve issue with jitterentropy-rngd package.]]></description>
		<lastBuildDate>Sun, 29 Nov 2020 13:50:21 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: I solve issue with jitterentropy-rngd package]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=25999#p25999</link>
			<description><![CDATA[<p>Ok, comrade!</p><p>I send my and your information to Debian bug report.</p><p>Thank you for your comment!</p>]]></description>
			<author><![CDATA[dummy@example.com (Eaglet)]]></author>
			<pubDate>Sun, 29 Nov 2020 13:50:21 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=25999#p25999</guid>
		</item>
		<item>
			<title><![CDATA[Re: I solve issue with jitterentropy-rngd package]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=25998#p25998</link>
			<description><![CDATA[<div class="quotebox"><cite>Eaglet wrote:</cite><blockquote><div><p>Developers, Please add this code</p></div></blockquote></div><p>The package is drawn from Debian&#039;s repositories (using <a href="https://dev1galaxy.org/viewtopic.php?id=3192" rel="nofollow">amprolla</a>) so if you want the init script to be modified then you will have to ask the Debian package maintainer instead.</p><p>And your modifications have some issues:</p><div class="quotebox"><cite>Eaglet wrote:</cite><blockquote><div><div class="codebox"><pre><code>if  [ ! $(lsmod | grep jitterentropy_rng) ]; then</code></pre></div></div></blockquote></div><p>No need to use the <span class="bbc">[</span> test and no need for <span class="bbc">lsmod</span>:</p><div class="codebox"><pre><code>if ! grep -q jitterentropy_rng /proc/modules; then</code></pre></div><div class="quotebox"><cite>Eaglet wrote:</cite><blockquote><div><div class="codebox"><pre><code>        if  [ ! $(cat /etc/modules | grep jitterentropy_rng) ]; then</code></pre></div></div></blockquote></div><p><a href="http://porkmail.org/era/unix/award.html#uucaletter" rel="nofollow">Useless use of cat</a> and again, no need for <span class="bbc">[</span>:</p><div class="codebox"><pre><code>if ! grep -q jitterentropy_rng /etc/modules; then</code></pre></div><p>HTH</p><p>EDIT: on reflection I really don&#039;t think an init script should be changing system configuration files. Just the <span class="bbc">modprobe</span> should be sufficient.</p>]]></description>
			<author><![CDATA[dummy@example.com (Head_on_a_Stick)]]></author>
			<pubDate>Sat, 28 Nov 2020 19:54:11 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=25998#p25998</guid>
		</item>
		<item>
			<title><![CDATA[I solve issue with jitterentropy-rngd package]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=25997#p25997</link>
			<description><![CDATA[<p>Hello, comrades!</p><p>I solve issue with use jitterentropy-rngd package after installation. Developers, Please add this code to script /etc/init.d/jitterentropy-rngd for solve current issue with this service:</p><div class="codebox"><pre><code>if  [ ! $(lsmod | grep jitterentropy_rng) ]; then
        modprobe jitterentropy-rng
        echo &quot;Sucess load jitterentropy_rng module...&quot;
        if  [ ! $(cat /etc/modules | grep jitterentropy_rng) ]; then
                echo &quot;jitterentropy_rng&quot; &gt;&gt; /etc/modules
                echo &quot;Sucess add module jitterentropy_rng for autoload by start system...&quot;
        fi
fi

do_restart()
{
start-stop-daemon --stop --quiet --retry=TERM/2/KILL/5 --pidfile $PIDFILE --exec $DAEMON
start-stop-daemon --start --quiet --retry=TERM/2/KILL/5 --pidfile $PIDFILE --exec $DAEMON
}
do_start()
{
start-stop-daemon --start --quiet --retry=TERM/2/KILL/5 --pidfile $PIDFILE --exec $DAEMON
}
do_stop()
{
start-stop-daemon --stop --quiet --retry=TERM/2/KILL/5 --pidfile $PIDFILE --exec $DAEMON
}</code></pre></div><p>Please repack installation package jitterentropy-rngd with this code!</p>]]></description>
			<author><![CDATA[dummy@example.com (Eaglet)]]></author>
			<pubDate>Sat, 28 Nov 2020 19:21:22 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=25997#p25997</guid>
		</item>
	</channel>
</rss>
