<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=2306&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] Manual Add Statup Script for NOIP2]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=2306</link>
		<description><![CDATA[The most recent posts in [SOLVED] Manual Add Statup Script for NOIP2.]]></description>
		<lastBuildDate>Tue, 14 Aug 2018 23:34:21 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] Manual Add Statup Script for NOIP2]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11314#p11314</link>
			<description><![CDATA[<p>[SOLUTION]</p><div class="codebox"><pre><code>echo &#039;#!/sbin/runscript

description=&quot;Start/Stop the no-ip daemon&quot;

depend()
{
        after *
        keyword notimeout
}

start()
{
        ebegin &quot;Starting NoIP&quot;

        /usr/bin/noip2

        eend $? &quot;Failed to start NoIP&quot;
}

stop()
{
        ebegin &quot;Stopping NoIP&quot;

        killall -TERM /usr/bin/noip2

        eend $? $&quot;Failed to stop NoIP&quot;
}&#039; | sudo tee /etc/init.d/noip2 ; sudo chmod a+rx /etc/init.d/noip2 </code></pre></div><p>Source -&gt; <a href="https://forums.gentoo.org/viewtopic-t-715564-start-0.html" rel="nofollow">https://forums.gentoo.org/viewtopic-t-7 … art-0.html</a></p>]]></description>
			<author><![CDATA[dummy@example.com (inukaze)]]></author>
			<pubDate>Tue, 14 Aug 2018 23:34:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11314#p11314</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Manual Add Statup Script for NOIP2]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11312#p11312</link>
			<description><![CDATA[<p>What init system are you using? The <span class="bbc">rc-update</span> and <span class="bbc">rc-service</span> commands at the end suggest that the instructions are for <span class="bbc">openrc</span>, which is not Devuan&#039;s default.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Tue, 14 Aug 2018 19:29:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11312#p11312</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Manual Add Statup Script for NOIP2]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11304#p11304</link>
			<description><![CDATA[<p>HI there, i am trying the &quot;noip2&quot; startup automatically with system boot. but i dont know why the follow process don&#039;t work with Devuan Jessie 1.0 :</p><div class="codebox"><pre class="vscroll"><code>sudo touch /etc/init.d/noip2
sudo chmod a+o+x /etc/init.d/noip2
echo &#039;#! /bin/sh
# /etc/init.d/noip2.sh

# Supplied by no-ip.com
# Modified for Debian GNU/Linux by Florian Moesch

. /lib/lsb/init-functions # modify for your init-functions

PROG=/usr/local/bin/noip2
NAME=noip2

test -x $PROG || exit 0

case &quot;$1&quot; in
        start)
        echo -n &quot;Starting dynamic address update: &quot;
        $PROG
        echo &quot;$NAME.&quot;
        ;;
        stop)
        echo -n &quot;Shutting down dynamic address update:&quot;
        killall $NAME
        echo &quot;$NAME.&quot;
;;

restart)
        echo -n &quot;Restarting dynamic address update: &quot;
        killall $NAME
        $PROG
        echo &quot;$NAME.&quot;
;;

status)
        status_of_proc $PROG $NAME &amp;&amp; exit 0 || exit $?
        ;;
        *)
        echo &quot;Usage: $0 {status|start|stop|restart}&quot;
        exit 1
        esac
exit 0
&#039; | sudo tee /etc/init.d/noip2
sudo chmod a+x /etc/init.d/noip2 ; \
sudo rc-update add noip2 default ; \
sudo rc-service noip2 start</code></pre></div><p>if i restart, and use :</p><div class="codebox"><pre><code>ps -A | noip</code></pre></div><p>Is not running for start i must use :</p><div class="codebox"><pre><code>sudo rc-service noip2 start</code></pre></div><p>What is wrong with the script?</p>]]></description>
			<author><![CDATA[dummy@example.com (inukaze)]]></author>
			<pubDate>Tue, 14 Aug 2018 10:49:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11304#p11304</guid>
		</item>
	</channel>
</rss>
